FloatExtensionsIsNegativeZero Method
Gets whether the specified value is negative zero.
Namespace: KGySoft.CoreLibrariesAssembly: KGySoft.CoreLibraries (in KGySoft.CoreLibraries.dll) Version: 8.0.0
public static bool IsNegativeZero(
this float value
)
<ExtensionAttribute>
Public Shared Function IsNegativeZero (
value As Single
) As Boolean
public:
[ExtensionAttribute]
static bool IsNegativeZero(
float value
)
[<ExtensionAttribute>]
static member IsNegativeZero :
value : float32 -> bool
- value Single
- The value to check.
Boolean, if
value represents a negative zero value; otherwise,
.In Visual Basic and C#, you can call this method as an instance method on any object of type
Single. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).