This is a small snippet of code that I found. when we make a call
object.Max(s=>s.Length)
why do we need a static method?
public static TResult Max<TSource, TResult>(
this IEnumerable<TSource> source,
Func<TSource, TResult> selector)
{
return source.Select(selector).Max();
}
please update the question title. I couldnot abstract it well.