Enumerable::Max Method (IEnumerable<Int64>^)
.NET Framework (current version)
Returns the maximum value in a sequence of Int64 values.
Assembly: System.Core (in System.Core.dll)
Parameters
- source
-
Type:
System.Collections.Generic::IEnumerable<Int64>^
A sequence of Int64 values to determine the maximum value of.
| Exception | Condition |
|---|---|
| ArgumentNullException | source is null. |
| InvalidOperationException | source contains no elements. |
The Max(IEnumerable<Int64>^) method uses the Int64 implementation of IComparable<T> to compare values.
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: