IntegerMath.IsOdd Method

Definition

Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0

Overload List

IsOdd(BigInteger) Returns whether an integer is odd.
IsOdd(Decimal) Returns whether an integer is odd.
IsOdd(Int16) Returns whether an integer is odd.
IsOdd(Int32) Returns whether an integer is odd.
IsOdd(Int64) Returns whether an integer is odd.

IsOdd(BigInteger)

Returns whether an integer is odd.
C#
public static bool IsOdd(
	BigInteger n
)

Parameters

n  BigInteger
A BigInteger number.

Return Value

Boolean
true if the number is odd; false otherwise.

IsOdd(Decimal)

Returns whether an integer is odd.
C#
public static bool IsOdd(
	this decimal n
)

Parameters

n  Decimal
A Decimal number.

Return Value

Boolean
true if the number is odd; false otherwise.

Usage Note

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).

IsOdd(Int16)

Returns whether an integer is odd.
C#
public static bool IsOdd(
	this short n
)

Parameters

n  Int16
A 16-bit integer.

Return Value

Boolean
true if the number is odd; false otherwise.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type Int16. 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).

IsOdd(Int32)

Returns whether an integer is odd.
C#
public static bool IsOdd(
	this int n
)

Parameters

n  Int32
A 32-bit integer.

Return Value

Boolean
true if the number is odd; false otherwise.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type Int32. 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).

IsOdd(Int64)

Returns whether an integer is odd.
C#
public static bool IsOdd(
	this long n
)

Parameters

n  Int64
A 64-bit integer.

Return Value

Boolean
true if the number is odd; false otherwise.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type Int64. 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).

See Also