|
CSVReaderToDouble Method
|
convert string to double value. if not successful return null.
Namespace:
Karamba.Utilities
Assembly:
KarambaCommon (in KarambaCommon.dll) Version: 2.2.0.4 (2.2.0.4)
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