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!

UInt64.Parse

Converts a String to a UInt64. The UInt64 type is not CLS compliant. The CLS-compliant alternative is Int64.

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

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

Converts a String to a UInt64.

[C#] public static ulong Parse(String);
[C++] public: static unsigned __int64 Parse(String*);
[JScript] public static function Parse(String) : UInt64;

Converts a String representation of a value to a UInt64.

[C#] public static ulong Parse(String, NumberStyles, NumberFormatInfo);
[C++] public: static unsigned __int64 Parse(String*, NumberStyles, NumberFormatInfo);
[JScript] public static function Parse(String, NumberStyles, NumberFormatInfo) : UInt64;

Converts a String representation of a value to a UInt64.

[C#] public static ulong Parse(String, NumberStyles);
[C++] public: static unsigned __int64 Parse(String*, NumberStyles);
[JScript] public static function Parse(String, NumberStyles) : UInt64;

See Also

UInt64 Structure | UInt64 Members | System Namespace