Referencecard
Referencecard
Types, Variables,
and Values
C# is a strongly-typed language. Every
variable and constant has a type, as
does every expression that evaluates
to a value.
Possible Values
True or False
0 to 255
-32,768 to 32,767
-2,147,483,648 to 2,147,483,647
-9,223,372,036,854,775,808 to
9,223,372,036,854,775,807
A string of Unicode characters.
An object.
Default Values
False
0
0
0L
0
null
null
End your declaration by assigning a value to the type and name you
have created. The value should be relevant to the type you have
specified, otherwise you might generate an error!
Search Microsoft C#
Programming