Enumerable.Min Method (IEnumerable(Of Nullable(Of Single)))
![]() |
---|
The .NET API Reference documentation has a new home. Visit the .NET API Browser on docs.microsoft.com to see the new experience. |
Returns the minimum value in a sequence of nullable Single values.
Assembly: System.Core (in System.Core.dll)
<ExtensionAttribute> Public Shared Function Min ( source As IEnumerable(Of Nullable(Of Single)) ) As Nullable(Of Single)
Parameters
- source
-
Type:
System.Collections.Generic.IEnumerable(Of Nullable(Of Single))
A sequence of nullable Single values to determine the minimum value of.
Return Value
Type: System.Nullable(Of Single)A value of type Nullable<Single> in C# or Nullable(Of Single) in Visual Basic that corresponds to the minimum value in the sequence.
Exception | Condition |
---|---|
ArgumentNullException | source is null. |
The Min(IEnumerable(Of Nullable(Of Single))) method uses the Single implementation of IComparable(Of 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.
The following code example demonstrates how to use Min(IEnumerable(Of Nullable(Of Int32))) to determine the minimum value in a sequence.
![]() |
---|
This code example uses an overload of this overloaded method that is different from the specific overload that this topic describes. To extend the example to this topic, substitute the elements of the source sequence with elements of the appropriate numerical type. |
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