TechTalk Genome v4.2

NullableUInt64 Explicit NullableString to NullableUInt64 Conversion 

Converts the specified NullableString parameter to a NullableUInt64 structure.

public static explicit operator NullableUInt64(
   NullableString x
);

Parameters

x
The NullableString to be converted.

Return Value

Null if x is NullableString.Null otherwise a new NullableUInt64 structure containing the parsed value.

Exceptions

Exception TypeCondition
FormatExceptionx does not consist solely of an optional sign followed by a sequence of digits ranging from 0 to 9.
OverflowExceptionx 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