using System.Collections.Generic;
public Person(string name, short age, string number)
public static void Main()
List<Person> PersonList = new List<Person>();
PersonList.Add(new Person("Monica Brown",31,"706-832-3486"));
PersonList.Add(new Person("Joshua Thomas",30,"281-865-1288"));
PersonList.Add(new Person("Brenda Brown",57,"706-726-0148"));
List<Person> personByAge = PersonList.OrderBy(person => person.Age).ToList();
foreach (Person person in personByAge)
Console.WriteLine(person.Name + ":" + person.Age + "years old");