c# linq to get most recent item from IList

C#
DateTime? latestDate = myCollection.Max(r => r.ExpirationDate);
Source

Also in C#: