Enumerable::Min Method (IEnumerable<Nullable<Int32>>^)
Returns the minimum value in a sequence of nullable Int32 values.
Assembly: System.Core (in System.Core.dll)
public: [ExtensionAttribute] static Nullable<int> Min( IEnumerable<Nullable<int>>^ source )
Parameters
- source
-
Type:
System.Collections.Generic::IEnumerable<Nullable<Int32>>^
A sequence of nullable Int32 values to determine the minimum value of.
Return Value
Type: System::Nullable<Int32>A value of type Nullable<Int32> in C# or Nullable(Of Int32) in Visual Basic that corresponds to the minimum value in the sequence.
| Exception | Condition |
|---|---|
| ArgumentNullException | source is null. |
The Min(IEnumerable<Nullable<Int32>>^) method uses the Int32 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 Min() clause translates to an invocation of Min.
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