I have a Collection in memory. How do I sort it in memory desc based on 2 fieldindexes.
Right now I call,
this.Sort(MyFieldIndex.Field1, ListSortDirection.Descending);
I'd like to sort by MyFieldIndex.Field1 desc then by MyFieldIndex.Field2 desc
I couldn't find a way to pass a SortExpression object to the collection.
Thanks!