|
MathExtensionsIsEven Method
|
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 even.
Namespace:
Extentions
Assembly:
FurcadiaLib (in FurcadiaLib.dll) Version: 2.19.PreAlpha 59
Syntax public static bool IsEven(
int value
)
Public Shared Function IsEven (
value As Integer
) As Boolean
Dim value As Integer
Dim returnValue As Boolean
returnValue = MathExtensions.IsEven(value)
public:
static bool IsEven(
int value
)
static member IsEven :
value : int -> bool
Parameters
- value
- Type: SystemInt32
The value.
Return Value
Type:
Booleantrue if the specified value is even; otherwise,
false.
See Also