When using linq and you have
c.Sort()
Is there any good inline way of defining a Comparison and/or IComparer class w
Comparison
IComparer
That's one of the uses of lambda expressions:
c.Sort( (x,y) => x.A.CompareTo(y.A))