Method | Description | |
---|---|---|
AsDecimal ( this source ) : decimal? |
Return converted Decimal if successfully parsed, otherwise null (Nothing in Visual Basic).
|
|
AsDecimal ( this source, NumberStyles style ) : decimal? |
Return converted Decimal if successfully parsed, otherwise null (Nothing in Visual Basic).
|
|
AsDouble ( this source ) : double? |
Return converted Double if successfully parsed, otherwise null (Nothing in Visual Basic).
|
|
AsDouble ( this source, NumberStyles style ) : double? |
Return converted Double if successfully parsed, otherwise null (Nothing in Visual Basic).
|
|
AsInt32 ( this source ) : int? |
Return converted Int32 if successfully parsed, otherwise null (Nothing in Visual Basic).
|
|
AsInt32 ( this source, NumberStyles style ) : int? |
Return converted Int32 if successfully parsed, otherwise null (Nothing in Visual Basic).
|
|
AsInt64 ( this source ) : long? |
Return converted Int64 if successfully parsed, otherwise null (Nothing in Visual Basic).
|
|
AsInt64 ( this source, NumberStyles style ) : long? |
Return converted Int64 if successfully parsed, otherwise null (Nothing in Visual Basic).
|
|
IsNumber ( this source ) : bool |
Return whether the provided String is number. It call overload method with this combination of NumberStyles (NumberStyles.AllowLeadingWhite | NumberStyles.AllowTrailingWhite | NumberStyles.AllowLeadingSign | NumberStyles.AllowTrailingSign | NumberStyles.AllowDecimalPoint | NumberStyles.AllowThousands;).
|
|
IsNumber ( this source, NumberStyles style ) : bool |
Return whether the provided String is number with provided NumberStyles.
|
|
ToDecimal ( this source ) : decimal |
Return converted Decimal.
|
|
ToDecimal ( this source, NumberStyles style ) : decimal |
Return converted Decimal.
|
|
ToDouble ( this source ) : double |
Return converted Double.
|
|
ToDouble ( this source, NumberStyles style ) : double |
Return converted Double.
|
|
ToInt32 ( this source ) : int |
Return converted Int32.
|
|
ToInt32 ( this source, NumberStyles style ) : int |
Return converted Int32.
|
|
ToInt64 ( this source ) : long |
Return converted Int64.
|
|
ToInt64 ( this source, NumberStyles style ) : long |
Return converted Int64.
|
public static AsDecimal ( this source ) : decimal? | ||
source | this | A |
return | decimal? |
public static AsDecimal ( this source, NumberStyles style ) : decimal? | ||
source | this | A |
style | NumberStyles | A |
return | decimal? |
public static AsDouble ( this source ) : double? | ||
source | this | A |
return | double? |
public static AsDouble ( this source, NumberStyles style ) : double? | ||
source | this | A |
style | NumberStyles | A |
return | double? |
public static AsInt32 ( this source ) : int? | ||
source | this | A |
return | int? |
public static AsInt32 ( this source, NumberStyles style ) : int? | ||
source | this | A |
style | NumberStyles | A |
return | int? |
public static AsInt64 ( this source ) : long? | ||
source | this | A |
return | long? |
public static AsInt64 ( this source, NumberStyles style ) : long? | ||
source | this | A |
style | NumberStyles | A |
return | long? |
public static IsNumber ( this source ) : bool | ||
source | this | A |
return | bool |
public static IsNumber ( this source, NumberStyles style ) : bool | ||
source | this | A |
style | NumberStyles | A |
return | bool |
public static ToDecimal ( this source ) : decimal | ||
source | this | A |
return | decimal |
public static ToDecimal ( this source, NumberStyles style ) : decimal | ||
source | this | A |
style | NumberStyles | A |
return | decimal |
public static ToDouble ( this source ) : double | ||
source | this | A |
return | double |
public static ToDouble ( this source, NumberStyles style ) : double | ||
source | this | A |
style | NumberStyles | A |
return | double |
public static ToInt32 ( this source ) : int | ||
source | this | A |
return | int |
public static ToInt32 ( this source, NumberStyles style ) : int | ||
source | this | A |
style | NumberStyles | A |
return | int |
public static ToInt64 ( this source ) : long | ||
source | this | A |
return | long |
public static ToInt64 ( this source, NumberStyles style ) : long | ||
source | this | A |
style | NumberStyles | A |
return | long |