IntExtensions.IsOdd
Extension Method in IntExtensions
Declaration
public static bool IsOdd(this int n)
Description
Checks if the number is odd. n % 2 != 0
Parameters
n | The number to check. |
Returns
bool | True if the number is odd. |
public static bool IsOdd(this int n)
Checks if the number is odd. n % 2 != 0
n | The number to check. |
bool | True if the number is odd. |