IGrouping<TKey, TElement>.Max Method
.NET Framework 3.5
Returns the maximum value in a sequence of values.
This member is overloaded. For complete information about this member, including syntax, usage, and examples, click a name in the overload list.
| Name | Description | |
|---|---|---|
|
Max() | Returns the maximum value in a generic sequence. (Defined by Enumerable.) |
|
Max(Func<TElement, Int32>) | Invokes a transform function on each element of a sequence and returns the maximum Int32 value. (Defined by Enumerable.) |
|
Max(Func<TElement, Nullable<Int32>>) | Invokes a transform function on each element of a sequence and returns the maximum nullable Int32 value. (Defined by Enumerable.) |
|
Max(Func<TElement, Int64>) | Invokes a transform function on each element of a sequence and returns the maximum Int64 value. (Defined by Enumerable.) |
|
Max(Func<TElement, Nullable<Int64>>) | Invokes a transform function on each element of a sequence and returns the maximum nullable Int64 value. (Defined by Enumerable.) |
|
Max(Func<TElement, Single>) | Invokes a transform function on each element of a sequence and returns the maximum Single value. (Defined by Enumerable.) |
|
Max(Func<TElement, Nullable<Single>>) | Invokes a transform function on each element of a sequence and returns the maximum nullable Single value. (Defined by Enumerable.) |
|
Max(Func<TElement, Double>) | Invokes a transform function on each element of a sequence and returns the maximum Double value. (Defined by Enumerable.) |
|
Max(Func<TElement, Nullable<Double>>) | Invokes a transform function on each element of a sequence and returns the maximum nullable Double value. (Defined by Enumerable.) |
|
Max(Func<TElement, Decimal>) | Invokes a transform function on each element of a sequence and returns the maximum Decimal value. (Defined by Enumerable.) |
|
Max(Func<TElement, Nullable<Decimal>>) | Invokes a transform function on each element of a sequence and returns the maximum nullable Decimal value. (Defined by Enumerable.) |