|
CSVReaderToLong Method
|
convert string to a long integer. 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<long> ToLong(
string s
)
Public Shared Function ToLong (
s As String
) As Nullable(Of Long)
public:
static Nullable<long long> ToLong(
String^ s
)
static member ToLong :
s : string -> Nullable<int64>
Parameters
- s
- Type: SystemString
string to be converted to a long integer
Return Value
Type:
NullableInt64converted long integer or null if not successful
See Also