Method | Description | |
---|---|---|
IsValidFloat ( this strValue ) : bool |
Test if string value is a valid float value
|
|
IsValidFloat ( this strValue, NumberStyles numberStyle, |
Test if string value is a valid float value
|
|
TryParseFloat ( this strValue ) : float |
Convert float string value in float value
|
|
TryParseFloat ( this strValue, NumberStyles numberStyle, |
Convert float string value in float value
|
|
TryParseFloat ( this strValue, float defaultValue ) : float |
Convert float string value in float value
|
|
TryParseFloat ( this strValue, float defaultValue, NumberStyles numberStyle, |
Convert float string value in float value
|
|
TryParseFloat ( this strValue, float defaultValue, bool allowZero ) : float |
Convert float string value in float value
|
|
TryParseFloat ( this strValue, float defaultValue, bool allowZero, NumberStyles numberStyle, |
Convert float string value in float value
|
|
TryParseFloatArray ( this strValue ) : float[] |
Parse string array in short float
|
|
TryParseFloatArray ( this strValue, NumberStyles numberStyle, |
Parse string array in float array
|
|
TryParseFloatArray ( this strValue, float defaultValue ) : float[] |
Parse string array in float array
|
|
TryParseFloatArray ( this strValue, float defaultValue, NumberStyles numberStyle, |
Parse string array in float array
|
|
TryParseFloatArray ( this strValue, float defaultValue, bool allowDefaultConversion ) : float[] |
Parse string array in float array
|
|
TryParseFloatArray ( this strValue, float defaultValue, bool allowDefaultConversion, NumberStyles numberStyle, |
Parse string array in float array
|
public static IsValidFloat ( this strValue ) : bool | ||
strValue | this | string value |
return | bool |
public static IsValidFloat ( this strValue, NumberStyles numberStyle, |
||
strValue | this | string value |
numberStyle | NumberStyles | number style to convert |
culture | culture origin | |
return | bool |
public static TryParseFloat ( this strValue ) : float | ||
strValue | this | string to convert |
return | float |
public static TryParseFloat ( this strValue, NumberStyles numberStyle, |
||
strValue | this | string to convert |
numberStyle | NumberStyles | number style to convert |
culture | float culture origin | |
return | float |
public static TryParseFloat ( this strValue, float defaultValue ) : float | ||
strValue | this | string to convert |
defaultValue | float | default value to return on convert error |
return | float |
public static TryParseFloat ( this strValue, float defaultValue, NumberStyles numberStyle, |
||
strValue | this | string to convert |
defaultValue | float | default value to return on convert error |
numberStyle | NumberStyles | number style to convert |
culture | float culture origin | |
return | float |
public static TryParseFloat ( this strValue, float defaultValue, bool allowZero ) : float | ||
strValue | this | string to convert |
defaultValue | float | default value to return on convert error |
allowZero | bool | allow 0 valuen on convert |
return | float |
public static TryParseFloat ( this strValue, float defaultValue, bool allowZero, NumberStyles numberStyle, |
||
strValue | this | string to convert |
defaultValue | float | default value to return on convert error |
allowZero | bool | allow 0 valuen on convert |
numberStyle | NumberStyles | number style to convert |
culture | float culture origin | |
return | float |
public static TryParseFloatArray ( this strValue ) : float[] | ||
strValue | this | string to parse |
return | float[] |
public static TryParseFloatArray ( this strValue, NumberStyles numberStyle, |
||
strValue | this | string to parse |
numberStyle | NumberStyles | number style to convert |
culture | culture origin | |
return | float[] |
public static TryParseFloatArray ( this strValue, float defaultValue ) : float[] | ||
strValue | this | string to parse |
defaultValue | float | default value when default tryparse |
return | float[] |
public static TryParseFloatArray ( this strValue, float defaultValue, NumberStyles numberStyle, |
||
strValue | this | string to parse |
defaultValue | float | default value when default tryparse |
numberStyle | NumberStyles | number style to convert |
culture | culture origin | |
return | float[] |
public static TryParseFloatArray ( this strValue, float defaultValue, bool allowDefaultConversion ) : float[] | ||
strValue | this | string to parse |
defaultValue | float | default value when default tryparse |
allowDefaultConversion | bool | Allow default tryparse values |
return | float[] |
public static TryParseFloatArray ( this strValue, float defaultValue, bool allowDefaultConversion, NumberStyles numberStyle, |
||
strValue | this | string to parse |
defaultValue | float | default value when default tryparse |
allowDefaultConversion | bool | Allow default tryparse values |
numberStyle | NumberStyles | number style to convert |
culture | culture origin | |
return | float[] |