Single.IsNegativeInfinity Method (Single)

 

Returns a value indicating whether the specified number evaluates to negative infinity.

Namespace:   System
Assembly:  mscorlib (in mscorlib.dll)

Public Shared Function IsNegativeInfinity (
	f As Single
) As Boolean

Parameters

f
Type: System.Single

A single-precision floating-point number.

Return Value

Type: System.Boolean

true if f evaluates to NegativeInfinity; otherwise, false.

Floating-point operations return NegativeInfinity to signal an overflow condition.

The following code example demonstrates the IsNegativeInfinity method.

' This will return True.
Console.Write("IsNegativeInfinity(-5.0 / 0) = ")
If Single.IsNegativeInfinity(-5 / 0) Then
    Console.WriteLine("True.")
Else
    Console.WriteLine("False.")
End If

Universal Windows Platform
Available since 8
.NET Framework
Available since 1.1
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
Return to top
Show: