我有一个包含对象的数组,这些对象有一个字符串、一个整数和一个字符属性。
Person[] people = new Person[1]; //Declare the array of objects
[...] This code is irrelevant
Person person = new Person(name, age, gender); //This creates instance a new object
people.SetValue(person, i); //is just a variable which increase in a c
Array.Resize(ref people, people.Length + 1); //Change array size
i++; // Autoincrement
[...] 更多代码来填充有效的值
从存储在人员数组中的所有对象人员中,我想获取人员的年龄最大值(年龄属性是整数值)