XmlConvert.ToUInt64(String) Method

Definition

Important

This API is not CLS-compliant.

Converts the String to a UInt64 equivalent.

public:
 static System::UInt64 ToUInt64(System::String ^ s);
[System.CLSCompliant(false)]
public static ulong ToUInt64 (string s);
[<System.CLSCompliant(false)>]
static member ToUInt64 : string -> uint64
Public Shared Function ToUInt64 (s As String) As ULong

Parameters

s
String

The string to convert.

Returns

A UInt64 equivalent of the string.

Attributes

Exceptions

s is not in the correct format.

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

Applies to