|
MathExtensionsIsOdd Method (UInt32)
|
This stuff is still in the planning stages. Any questions or Comments are welcome. [This is preliminary documentation and is subject to change.]
Determines whether the specified value is odd.
Namespace:
Extentions
Assembly:
FurcadiaLib (in FurcadiaLib.dll) Version: 2.19.PreAlpha 59
Syntax [CLSCompliantAttribute(false)]
public static bool IsOdd(
uint value
)
<CLSCompliantAttribute(false)>
Public Shared Function IsOdd (
value As UInteger
) As Boolean
Dim value As UInteger
Dim returnValue As Boolean
returnValue = MathExtensions.IsOdd(value)
public:
[CLSCompliantAttribute(false)]
static bool IsOdd(
unsigned int value
)
[<CLSCompliantAttribute(false)>]
static member IsOdd :
value : uint32 -> bool
Parameters
- value
- Type: SystemUInt32
The value.
Return Value
Type:
Booleantrue if the specified value is odd; otherwise,
false.
See Also