Single.IsNegativeInfinity Method
Microsoft Silverlight will reach end of support after October 2021. Learn more.
Returns a value indicating whether the specified number evaluates to negative infinity.
Namespace: System
Assembly: mscorlib (in mscorlib.dll)
Syntax
'Declaration
<SecuritySafeCriticalAttribute> _
Public Shared Function IsNegativeInfinity ( _
f As Single _
) As Boolean
[SecuritySafeCriticalAttribute]
public static bool IsNegativeInfinity(
float f
)
Parameters
- f
Type: System.Single
A single-precision floating-point number.
Return Value
Type: System.Boolean
true if f evaluates to NegativeInfinity; otherwise, false.
Examples
The following code example demonstrates the IsNegativeInfinity method.
' This will return True.
outputBlock.Text &= "IsNegativeInfinity(-5.0 / 0) = "
If Single.IsNegativeInfinity(-5 / 0) Then
outputBlock.Text &= "True." & vbCrLf
Else
outputBlock.Text &= "False." & vbCrLf
End If
// This will return true.
outputBlock.Text += String.Format("IsNegativeInfinity(-5.0F / 0) == {0}.", Single.IsNegativeInfinity(-5.0F / 0) ? "true" : "false") + "\n";
Version Information
Silverlight
Supported in: 5, 4, 3
Silverlight for Windows Phone
Supported in: Windows Phone OS 7.1, Windows Phone OS 7.0
XNA Framework
Supported in: Xbox 360, Windows Phone OS 7.0
Platforms
For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.
See Also