DoubleExtensionsIsNegativeZero Method
Gets whether the specified value is negative zero.
Namespace: KGySoft.CoreLibrariesAssembly: KGySoft.CoreLibraries (in KGySoft.CoreLibraries.dll) Version: 10.0.0
public static bool IsNegativeZero(
this double value
)
<ExtensionAttribute>
Public Shared Function IsNegativeZero (
value As Double
) As Boolean
public:
[ExtensionAttribute]
static bool IsNegativeZero(
double value
)
[<ExtensionAttribute>]
static member IsNegativeZero :
value : float -> bool
- value Double
- 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
Double. 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).