Method | Description | |
---|---|---|
ConvertNumber ( object from ) : double |
Here in .NET-istan, we're going to use double for all metrics since we don't have convenient base classes for denoting general numeric types like Scala. If a specific metrics method needs an integral data type, it should convert down from double.
|
|
Defined ( double value ) : bool |
A defined value is greater than zero and not NaN / Infinity
|
public static ConvertNumber ( object from ) : double | ||
from | object | |
return | double |
public static Defined ( double value ) : bool | ||
value | double | |
return | bool |