I'm unable to find out on how to get the min date and max date from a dictionary collection.
My model class looks like this:
Dictionary<string, IList<ErrorModel>> errorList
public class ErrorModel
{
public string Date { get; set; }
public int Total { get; set; }
public string Description { get; set; }
}
What I want to do get the min date and max date of the collection.
Hope anyone can help me out