整數型別
sbyte (-128至127) 8bit
byte (0至255) 8bit
short (-32768至32767) 16bit
ushort (0至65535) 16bit
int (-2,147,483,648至2,147,483,647) 32bit
uint (0至4,294,967,295) 32bit
long (-9,223,372,036,854,775,808至9,223,372,036,854,775,807) 64bit
ulong (0至18,446,744,073,709,551,615) 64bit
字元
char ( U+0000 至 U+FFFF ) 16bit unicode
浮點數
float 32bit 精準度
double 64bit 精準度
decimal 128bit 精準度
布林值
bool (true,false)
字串
string
陣列
char[]
byte[]
int[]
float[]
...
鋸齒陣列
int[][5]
byte[][10]
二維陣列
int[3,3]
byte[3,4]
動態型別
var