------------------------------------10:47 2015/1/22-------------------------------------------------
集合初始化器List<int> list =new List<int>(){1,2,3,4,5,6,7,8,9};//list.AddRange(new int[]{1,2,3,4,5,6,7,8,9});对象初始化
Person p=new Person(){Name="张三",Age=9,Gender='男'};