I have List List, my type contains Age and RandomID
List
Age
RandomID
Now I want to find the maximum age from this list.
What
int max = myList.Max(r => r.Age);
http://msdn.microsoft.com/en-us/library/system.linq.enumerable.max.aspx