using System.Collections.Generic;
public static void Main()
List<Person> lst = new List<Person>();
lst.Add(new Person{ id=1, fullName="adfadf", age=20 });
lst.Add(new Person{ id=2, fullName="sdf", age=21 });
lst.Add(new Person{ id=3, fullName="grwr", age=24 });
lst.Add(new Person{ id=4, fullName="asgr", age=18 });
public string fullName {get;set;}
public int age {get;set;}