值类型,引用类型
C#中的值类型有以下几种
Boolean:bool
Unsigned, numeric, integral:byte、char、uint、ulong、ushort
Numeric, floating-point:decimal、double、float
Enumeration:enum
Signed, numeric, integral:int、long、sbyte、short
User-defined structure:struct
C#中引用类型
可自己定义的引用类型 class、interface、delegate
内置引用类型dynamic、object、string
更多知识可以看这个链接