TechTalk Genome v4.2

NullableUInt64.Parse Method 

Converts the specified string representation of a number to its NullableUInt64 equivalent.

public static NullableUInt64 Parse(
   string s
);

Parameters

s
The string to be converted.

Return Value

A NullableUInt64 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 Int64.MinValue or greater than Int64.MaxValue.

Requirements

Namespace: TechTalk.Genome.NullableTypes

Assembly: TechTalk.Genome (in TechTalk.Genome.dll)

Version: 4.2.4.4

Editions: Professional, Evaluation, Express

See Also

NullableUInt64 Class | TechTalk.Genome.NullableTypes Namespace