本帖最后由 黑骏马 于 2013-8-3 20:13 编辑
老师讲的一个例子:- public enum Gender { 男,女 }
- public struct Person
- {
- public string name;
- public Gender sex;
- public int age;
- }
- static void Main()
- {
- Person onePerson;
- onePerson.name = "张三";
- onePerson.sex = Gender.男;
- onePerson.age = 18;
- Console.WriteLine("{0},性别{1},现年{2}岁。",onePerson.name,onePerson.sex,onePerson.age);
- Console.ReadKey();
- }
复制代码 我想把其中的onePerson改成 sPerson[j] 这样的形式,
onePerson.name = "张三"; 如果有多个人的数据,还是得增加变量 secPerson 、thrPerson……
如果可以用数组的话就方便多了
sPerson[0].name = "张三";
sPerson[0].age = 20;
sPerson[1].name = "李四";
sPerson[1].age = 22;
但是查了半天资料都没有找到讲相关内容的,
请问要实现类似的功能应该怎么做?
。
|