的最大值我有有對象的數組,這些對象有一個字符串,一個整數和炭的性質。獲得從對象陣列中C#
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.Max(person => person.Age);'另外,不要像這樣手動調整數組大小。使用'List',它將處理您的大小。 「 –
dlev
」只是一個變量,在c中增加「什麼是」c「? –