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