TechTalk Genome v4.2

NullableUInt32 Explicit NullableString to NullableUInt32 Conversion 

Converts the specified NullableString parameter to a NullableUInt32 structure.

public static explicit operator NullableUInt32(
   NullableString x
);

Parameters

x
The NullableString to be converted.

Return Value

Null if x is NullableString.Null otherwise a new NullableUInt32 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 Int32.MinValue or greater than Int32.MaxValue.

Requirements

Namespace: TechTalk.Genome.NullableTypes

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

Version: 4.2.4.4

Editions: Professional, Evaluation, Express

See Also

NullableUInt32 Class | TechTalk.Genome.NullableTypes Namespace