0
kicks
Sorting list<t> the easy way using lambda expressions
Introduction of lambda expressions in .NET 3.5 have simplified many operations. One of them is sorting List&lt;t&gt; of complex types. For example assume
that we have a type named Person and it has a Name property among other properties. Now if we want to sort a list of List&lt;Person&gt; on the Name property,
we just have to use a single li