메소드 | 설명 | |
---|---|---|
AreClose ( double left, double right ) : bool |
Determine if two numbers are close in value.
|
|
IsGreaterThan ( double left, double right ) : bool |
Determine if one number is greater than another.
|
|
IsLessThanOrClose ( double left, double right ) : bool |
Determine if one number is less than or close to another.
|
|
IsNaN ( this value ) : bool |
Check if a number isn't really a number.
|
|
IsZero ( this value ) : bool |
Check if a number is zero.
|
public static AreClose ( double left, double right ) : bool | ||
left | double | First number. |
right | double | Second number. |
리턴 | bool |
public static IsGreaterThan ( double left, double right ) : bool | ||
left | double | First number. |
right | double | Second number. |
리턴 | bool |
public static IsLessThanOrClose ( double left, double right ) : bool | ||
left | double | First number. |
right | double | Second number. |
리턴 | bool |
public static IsNaN ( this value ) : bool | ||
value | this | The number to check. |
리턴 | bool |
public static IsZero ( this value ) : bool | ||
value | this | The number to check. |
리턴 | bool |