与C++不同的地方:
char占两个字节存Unicode字符,
long long 改为 long ;
unsize ... 改为 u...
新增:
byte占1个字节,类似与C++char,
sbyte 有符号的byte
decimal 占16个字节,定点小数,28-29位有效数字和小数点位置,精度高,金融常用
转换不再支持隐式的由大值域转为小值域(会报错,需要转是要显示的转,如:int x = 5;short y = (short)x;)
C#读入要用Convert.To...例如:
double a = Convert.ToDouble(Console.ReadLine());
int a = Convert.ToInt(Console.ReadLine());