XmlConvert.ToUInt64(String) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Important
This API is not CLS-compliant.
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 null
.
s
is not in the correct format.
s
represents a number less than UInt64.MinValue or greater than UInt64.MaxValue.
Applies to
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.