1, Msil:microsoft Intermediate Language Microsoft intermediate language
2. Storage location for. NET Framework:%windir%\microsoft.net
Starting with the. NET Framework 4, the default location for the global assembly cache is%windir%\microsoft.net\assembly.
In earlier versions of the. NET Framework, the default location is%windir%\assembly.
3. Basic type:
(1) Value type:
The value type must be initialized, if it is empty: int? Intvalue = null;
(2) Reference type:
A reference type can be assigned an empty string: string str = ""; equivalent to: string str = string. Empty;
4. Type conversion:. Parse,convert. ToInt32
5. GUID: Globally unique identifier (globally unique Identifier)
Guid g = Guid.Empty
6. Enum Type: enum
(1) The enumeration value is a constant, not a variable. You cannot assign a value to an assignment statement in a program. (2) The enumeration element itself is defined by the system as a numeric value for the ordinal, from 0 to the beginning of the order defined as 0,1,2 .... As in weekday, the Sun value is 0,mon value of 1,sat value is 6. (3) The enumeration value can only be assigned to the enumeration variable, the value of the element can not be directly assigned to the enumeration variable: If you must assign a value to an enumeration variable, you must cast with a coercion type.
C # Foundation (i)