NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

UInt32.Parse

Converts a String to a UInt32. The UInt32 type is not CLS compliant. The CLS-compliant alternative is Int32.

[Visual Basic] The UInt32 type cannot be used in Visual Basic.

Overload List [C#, C++, JScript]

Converts a String to a UInt32.

[C#] public static uint Parse(String);
[C++] public: static unsigned int Parse(String*);
[JScript] public static function Parse(String) : UInt32;

Converts a String representation of a value to a UInt32.

[C#] public static uint Parse(String, NumberStyles, NumberFormatInfo);
[C++] public: static unsigned int Parse(String*, NumberStyles, NumberFormatInfo);
[JScript] public static function Parse(String, NumberStyles, NumberFormatInfo) : UInt32;

Converts a String representation of a value to a UInt32.

[C#] public static uint Parse(String, NumberStyles);
[C++] public: static unsigned int Parse(String*, NumberStyles);
[JScript] public static function Parse(String, NumberStyles) : UInt32;

See Also

UInt32 Structure | UInt32 Members | System Namespace