تذكِرة مبرمج
تأليف: waleed principle
تذكِرة مبرمج
تأليف: waleed principle
#
' علامة تنصيص مفردة
" علامة تنصيص مزدوجة
Slash
a Alert
b Backspace
f Form feed
n New Line
o Null
r Carriage Return
t Tab افقى
v Tab رأسى
مثال على n
MessageBox.Show("LinenNewLine");
النتيجة
DataType C#
Type Bits Value Range .NET Framework Type
bool 8 true or false System. Boolean
byte 8 0 to 255 System. Byte
sbyte 8 128 to 127 System.SByte
short 16 32768 to 32767 System.Int16
ushort 16 0 to 65535 System.UInt16
int 32 2,147,483,648 to 2,147,483,647 System.Int32
uint 32 0 to 4,294,967,295 System.UInt32
float 32 ±1.5 × 10−45 to ±3.4 × 1038 System.Single
long 64 9,223,372,036,854,775,808 to 9,223,372,036,854,775,807 System.Int64
ulong 64 0 to 18,446,744,073,709,551,615 System.UInt64
double 64 ±5.0 × 10−324 to ±1.7 × 10308 System.Double
decimal 128 ±1.0 × 10e−28 to ±7.9 × 10e28 System.Decimal
char 16 0 to 65535 System.Char
string 10+(2*عدد الحروف) is an alias for String in the .NET Framework
من 0 إلى 2 مليار حرف System.String
Data Types
_ A built-in data type, such as an int or char, or
_ A user-defined data type, such as a class or interface.
_ Data types can also be defined as being either:
_ Value Types (C# Reference), which store values, or
_ Reference Types (C# Reference), which store references to the actual data.
1- Built-in data type
Type Range Size
sbyte
-128 to 127 Signed 8-bit integer
byte
0 to 255 Unsigned 8-bit integer
char
U+0000 to U+ffff (2 byte) Unicode 16-bit character
short
-32,768 to 32,767 Signed 16-bit integer
ushort
0 to 65,535 Unsigned 16-bit integer
int
-2,147,483,648 to 2,147,483,647 Signed 32-bit integer
uint
0 to 4,294,967,295 Unsigned 32-bit integer
long
-9,223,372,036,854,775,808 to 9,223,372,036,854,775,807 Signed 64-bit integer
ulong
0 to 18,446,744,073,709,551,615 Unsigned 64-bit integer
float ±1.5e−45 to ±3.4e38 Signed 32-bit
double ±5.0 × 10−324 to ±1.7 × 10308 Signed 64-bit
decimal ±1.0 × 10e−28 to ±7.9 × 10e28 Signed 128-bit
string Reference Type دا الوحيد كلاس و structure جميع السابق 10+(2*عدد الحروف)
قراءة و تحميل كتاب قـواعد البيانات في السي شارب Visual C# 2010 PDF مجانا
قراءة و تحميل كتاب موسوعة كودات السي شارب (الجزء الأول) PDF مجانا
قراءة و تحميل كتاب الطريقة السهلة لربط سي شارب بقاعدة بيانات اكسيس PDF مجانا
قراءة و تحميل كتاب شرح برمجي مفصل لربط قاعدة بيانات أكسس مع السي شارب PDF مجانا