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