|
CSVReaderToDouble Method
|
convert string to double value. if not successful return null
Namespace:
Karamba.Utilities
Assembly:
KarambaCommon (in KarambaCommon.dll) Version: 1.0.0.0 (1.0.0.0)
Syntaxpublic static Nullable<double> ToDouble(
string s
)
Public Shared Function ToDouble (
s As String
) As Nullable(Of Double)
public:
static Nullable<double> ToDouble(
String^ s
)
static member ToDouble :
s : string -> Nullable<float>
Parameters
- s
- Type: SystemString
string to be converted to a double
Return Value
Type:
NullableDoubleconverted double or null if not successful
See Also