I have a class defined and I write records to this class to a List. Having trouble sorting the list before I write an error report. I\'m trying to sort the list alphabetically b
I think you want List1 = List1.OrderBy( x => x.finderror ).ToList();
List1 = List1.OrderBy( x => x.finderror ).ToList();