❞ كتاب C# Basics   waleed principle ❝

❞ كتاب C# Basics waleed principle ❝

تذكِرة مبرمج

تأليف: waleed principle

#
'علامة تنصيص مفردة
"علامة تنصيص مزدوجة
Slash
aAlert
bBackspace
fForm feed
nNew Line
oNull
rCarriage Return
tTab افقى
vTab رأسى

مثال على n
MessageBox.Show("LinenNewLine");
النتيجة





DataType C#

TypeBitsValue Range.NET Framework Type
bool8true or falseSystem. Boolean
byte80 to 255System. Byte
sbyte8128 to 127System.SByte
short1632768 to 32767System.Int16
ushort160 to 65535System.UInt16
int322,147,483,648 to 2,147,483,647System.Int32
uint320 to 4,294,967,295System.UInt32
float32±1.5 × 10−45 to ±3.4 × 1038System.Single
long649,223,372,036,854,775,808 to 9,223,372,036,854,775,807System.Int64
ulong640 to 18,446,744,073,709,551,615System.UInt64
double64±5.0 × 10−324 to ±1.7 × 10308System.Double
decimal128±1.0 × 10e−28 to ±7.9 × 10e28System.Decimal
char160 to 65535System.Char
string10+(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 127Signed 8-bit integer
byte
0 to 255Unsigned 8-bit integer
char
U+0000 to U+ffff (2 byte)Unicode 16-bit character
short
-32,768 to 32,767Signed 16-bit integer
ushort
0 to 65,535Unsigned 16-bit integer
int
-2,147,483,648 to 2,147,483,647Signed 32-bit integer
uint
0 to 4,294,967,295Unsigned 32-bit integer
long
-9,223,372,036,854,775,808 to 9,223,372,036,854,775,807Signed 64-bit integer
ulong
0 to 18,446,744,073,709,551,615Unsigned 64-bit integer
float±1.5e−45 to ±3.4e38Signed 32-bit
double±5.0 × 10−324 to ±1.7 × 10308Signed 64-bit
decimal±1.0 × 10e−28 to ±7.9 × 10e28Signed 128-bit
stringReference Type دا الوحيد كلاس و structure جميع السابق 10+(2*عدد الحروف)







-
من كتب لغة السي شارب كتب لغات البرمجة - مكتبة كتب تقنية المعلومات.

نبذة عن الكتاب:
C# Basics waleed principle

تذكِرة مبرمج

تأليف: waleed principle

#
'علامة تنصيص مفردة
"علامة تنصيص مزدوجة
Slash
aAlert
bBackspace
fForm feed
nNew Line
oNull
rCarriage Return
tTab افقى
vTab رأسى

مثال على n
MessageBox.Show("LinenNewLine");
النتيجة





DataType C#

TypeBitsValue Range.NET Framework Type
bool8true or falseSystem. Boolean
byte80 to 255System. Byte
sbyte8128 to 127System.SByte
short1632768 to 32767System.Int16
ushort160 to 65535System.UInt16
int322,147,483,648 to 2,147,483,647System.Int32
uint320 to 4,294,967,295System.UInt32
float32±1.5 × 10−45 to ±3.4 × 1038System.Single
long649,223,372,036,854,775,808 to 9,223,372,036,854,775,807System.Int64
ulong640 to 18,446,744,073,709,551,615System.UInt64
double64±5.0 × 10−324 to ±1.7 × 10308System.Double
decimal128±1.0 × 10e−28 to ±7.9 × 10e28System.Decimal
char160 to 65535System.Char
string10+(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 127Signed 8-bit integer
byte
0 to 255Unsigned 8-bit integer
char
U+0000 to U+ffff (2 byte)Unicode 16-bit character
short
-32,768 to 32,767Signed 16-bit integer
ushort
0 to 65,535Unsigned 16-bit integer
int
-2,147,483,648 to 2,147,483,647Signed 32-bit integer
uint
0 to 4,294,967,295Unsigned 32-bit integer
long
-9,223,372,036,854,775,808 to 9,223,372,036,854,775,807Signed 64-bit integer
ulong
0 to 18,446,744,073,709,551,615Unsigned 64-bit integer
float±1.5e−45 to ±3.4e38Signed 32-bit
double±5.0 × 10−324 to ±1.7 × 10308Signed 64-bit
decimal±1.0 × 10e−28 to ±7.9 × 10e28Signed 128-bit
stringReference Type دا الوحيد كلاس و structure جميع السابق 10+(2*عدد الحروف)






.
المزيد..

تعليقات القرّاء:

تذكِرة مبرمج

 

تأليف: 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*عدد الحروف)


    

      



حجم الكتاب عند التحميل : 4.8 ميجا بايت .
نوع الكتاب : ppt.
عداد القراءة: عدد قراءة C# Basics   waleed principle

اذا اعجبك الكتاب فضلاً اضغط على أعجبني
و يمكنك تحميله من هنا:

تحميل C# Basics   waleed principle
شكرًا لمساهمتكم

شكراً لمساهمتكم معنا في الإرتقاء بمستوى المكتبة ، يمكنكم االتبليغ عن اخطاء او سوء اختيار للكتب وتصنيفها ومحتواها ، أو كتاب يُمنع نشره ، او محمي بحقوق طبع ونشر ، فضلاً قم بالتبليغ عن الكتاب المُخالف:

برنامج تشغيل ملفات pptقبل تحميل الكتاب ..
يجب ان يتوفر لديكم برنامج تشغيل وقراءة ملفات ppt
يمكن تحميلة من هنا 'http://www.microsoftstore.com/store/msmea/ar_EG/pdp/Office-365-Personal/productID.299498600'