摘要:
1、类是有字段数据(成员变量)以及操作这个数据的成员(如构造函数、属性、方法、事件)所构成的自定义类型。2、对象必须使用new关键字来分配到内存中。View Code 1 class Car 2 { 3 //Car的状态 4 public string petName; 5 public int currSpeed; 6 7 //Car的功能 8 public void PrintState() 9 {10 Console.WriteLine("{0} i... 阅读全文
摘要:
1、默认情况下,枚举的第一个元素被设置为值0,其余的按照n+1递推;枚举不一定是连续的,也不需要有唯一值。2、默认情况下,用来保存枚举值的存储类型是System.Int32,当然也可以改成我们喜欢的类型。View Code 1 enum EmpType : byte2 {3 Manager = 10,4 Grunt = 1,5 Contractor= 100,6 VicePresident = 97 }3、为枚举变量赋值时,必须以枚举名(EmpType... 阅读全文
摘要:
1、C#数组初始化语法View Code 1 static void ArrayInitialization()2 {3 //使用new关键字的数组初始化语法4 string[] stringArray = new string[] { "one", "two", "three" };5 Console.WriteLine("stringArray has {0} elements", stringArray.Length);6 //你使用new关键字的数组初始化方法... 阅读全文