Enumerable.Max Method (IEnumerable<Nullable<Double>>)
.NET Framework (current version)
Returns the maximum value in a sequence of nullable Double values.
Assembly: System.Core (in System.Core.dll)
Parameters
- source
-
Type:
System.Collections.Generic.IEnumerable<Nullable<Double>>
A sequence of nullable Double values to determine the maximum value of.
Return Value
Type: System.Nullable<Double>A value of type Nullable<Double> in C# or Nullable(Of Double) in Visual Basic that corresponds to the maximum value in the sequence.
| Exception | Condition |
|---|---|
| ArgumentNullException | source is null. |
The Max(IEnumerable<Nullable<Double>>) method uses the Double implementation of IComparable<'T> to compare values.
If the source sequence is empty or contains only values that are null, this function returns null.
In Visual Basic query expression syntax, an Aggregate Into Max() clause translates to an invocation of Max.
Universal Windows Platform
Available since 8
.NET Framework
Available since 3.5
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Windows Phone
Available since 8.1
Available since 8
.NET Framework
Available since 3.5
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Windows Phone
Available since 8.1
Show: