|
by skeet via Jon Skeet: Coding Blog on 1/9/2011 10:03:05 PM
The second and third AOOOD operators today... if I'm brave enough to tackle Average tomorrow, I'll have done them all. More surprises here today, this time in terms of documentation... What are they? Min and Max are both extension methods with 22 overloads each. Min looks like this: public static int Min(this IEnumerable<int> source) public static int Min<TSource>( this IEnumerable<TSource> source,
... [ read more ]
|