DecimalExtensionsIsNegativeZero 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 decimal value
)
<ExtensionAttribute>
Public Shared Function IsNegativeZero (
value As Decimal
) As Boolean
public:
[ExtensionAttribute]
static bool IsNegativeZero(
Decimal value
)
[<ExtensionAttribute>]
static member IsNegativeZero :
value : decimal -> bool
- value Decimal
- 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
Decimal. 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).