NullableTypes Class Library

NullableInt64.Parse Method 

Converts the specified String representation of a number to its NullableInt64 equivalent.

[Visual Basic]
Public Shared Function Parse( _
   ByVal s As String _
) As NullableInt64
[C#]
public static NullableInt64 Parse(
   string s
);

Parameters

s
The String to be converted.

Return Value

A NullableInt64 structure containing the parsed value.

Exceptions

Exception TypeCondition
ArgumentNullExceptions is a null reference (Nothing in Visual Basic).
FormatExceptions does not consist solely of an optional sign followed by a sequence of digits ranging from 0 to 9.
OverflowExceptions represents a number less than MinValue or greater than MaxValue.

See Also

NullableInt64 Class | NullableTypes Namespace