XmlConvert::ToUInt64 Method (String^)

 

Converts the String to a UInt64 equivalent.

This API is not CLS-compliant.

Namespace:   System.Xml
Assembly:  System.Xml (in System.Xml.dll)

public:
[CLSCompliantAttribute(false)]
static unsigned long long ToUInt64(
	String^ s
)

Parameters

s
Type: System::String^

The string to convert.

Return Value

Type: System::UInt64

A UInt64 equivalent of the string.

Exception Condition
ArgumentNullException

s is null.

FormatException

s is not in the correct format.

OverflowException

s represents a number less than UInt64::MinValue or greater than UInt64::MaxValue.

Universal Windows Platform
Available since 8
.NET Framework
Available since 1.1
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Windows Phone
Available since 8.1
Return to top
Show: