C#語言中常見值類型,如:int、float、double、bool等都是.NET CTS(通用類型系統)的別名,附表如下:
C# 類型
.NET Framework 類型
bool
System.Boolean
byte
System.Byte
sbyte
System.SByte
char
System.Char
decimal
System.Decimal
double
System.Double
float
System.Single
int
System.Int32
uint
System.UInt32
long
System.Int64
ulong
System.UInt64
object
System.Object
short
System.Int16
ushort
System.UInt16
string
System.String
那麼我們申明變量並初始化就有兩種選擇啦
例如:
int s = 15;
Int32 w = s;
其它類型和int類型相同。