UInt64.Parse Method
Converts the string representation of a number to its 64-bit unsigned integer equivalent.
Namespace: System
Assembly: mscorlib (in mscorlib.dll)
Syntax
[CLSCompliantAttribute(false)]
public static UInt64 Parse (
string s
)
Parameters
- s
A string representing the number to convert.
Return Value
A 64-bit unsigned integer equivalent to the number contained in s.
Remarks
The s parameter contains a number of the form:
[ws][sign]digits[ws]
Items in square brackets ('[' and ']') are optional, and other items are as follows.
ws
Optional white space.
sign
An optional positive sign.
digits
A sequence of digits ranging from 0 to 9.
The s parameter is parsed using the formatting information in a NumberFormatInfo initialized for the current system culture. For more information, see NumberFormatInfo.CurrentInfo.
Version Information
Available in the .NET Micro Framework versions 3.0, 3.5, 4.0, and 4.1.