I have a set of class objects:
Tests
This collection contains many instances of Test :
public class Test { public string column1 { get; set; } }
I would like to use LINQ to order the contents of Tests and put in a new collection called TestsOrdered . I want to order the contents of column1 . I would like to do this with LINQ, since later I want to add more to the ordering.
How to do it with LINQ.
Samantha JT Star
source share