C#学习笔记1:
变量的作用域冲突时,调用实例变量:this.a,调用类变量:类名.a
常量总是静态的,必须初始化,一般用全大写格式,声明关键字为const,如const int NUNBE = 10;
C#的基本预定义类型内置于.NET Framework结构中(System),object是基类;
整型:System.SByte、System.Int16、System.Int32、System.Int64
有符号的8位、16位、32位、64位分别表示为sbyte、short、int、long