Skip to content

Instantly share code, notes, and snippets.

View elvisgs's full-sized avatar

Elvis Luciano Guimarães elvisgs

View GitHub Profile
@elvisgs
elvisgs / gist:956482
Created May 5, 2011 03:21 — forked from juanplopes/gist:955427
MaxOrDefault sem catch
public static TSource MaxOrDefault<TSource>(this IEnumerable<TSource> source)
where TSource : IComparable
{
return source.MaxOrDefault(default(TSource));
}
public static TSource MaxOrDefault<TSource>(this IEnumerable<TSource> source, TSource defaultValue)
where TSource : IComparable
{
return source.Aggregate(defaultValue, (a, b) => a != null && a.CompareTo(b) > 0 ? a : b);