For instance:
Sorter.SortBy ( array, ( a, b ) =>
{
return a > b;
} );
What's the best way to format them for maximum readibility?
Also think of it for one parameter lambda version, and other cases that might be used commonly.
What are the guidelines?