public static void Main()
public class DataObject {
public int Height { get; set;}
public int Width { get; set;}
List<DataObject> list = new List<DataObject>{
new DataObject { Height = 8, Width = 12},
new DataObject { Height = 4 , Width = 16}
var Analyze = (list: List<DataObject>) =>
return list.OrderBy(x=>x?.Height, true).FirstOrDefault();