オブジェクトを持つ配列があります。これらのオブジェクトには、文字列、整数、および文字のプロパティがあります。
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
[...] 機能する値を埋めるための追加のコード
people 配列に格納されているすべてのオブジェクト person から、その人の年齢の最大値を取得したい (age プロパティは整数値)