To sort by a property in the object, you have to specify a comparer or a method to get that property.
Using the List.Sort method:
theList.Sort(Function(x, y) x.age.CompareTo(y.age))
Using the OrderBy extension method:
theList = theList.OrderBy(Function(x) x.age).ToList()