Click or drag to resize
ConvertToUInt64 Method (String, Int32)
Converts the string representation of a number in a specified base to an equivalent 64-bit unsigned integer.

Namespace: System
Assembly: mscorlib (in mscorlib.dll) Version: 4.0.0.0
Syntax
C#
public static ulong ToUInt64(
	string value,
	int fromBase
)

Parameters

value
Type: SystemString
A string that contains the number to convert.
fromBase
Type: SystemInt32
The base of the number in value, which must be 2, 8, 10, or 16.

Return Value

Type: UInt64
A 64-bit unsigned integer that is equivalent to the number in value, or 0 (zero) if value is null.
Exceptions
ExceptionCondition
ArgumentExceptionfromBase is not 2, 8, 10, or 16. -or-value, which represents a non-base 10 unsigned number, is prefixed with a negative sign.
FormatExceptionvalue contains a character that is not a valid digit in the base specified by fromBase. The exception message indicates that there are no digits to convert if the first character in value is invalid; otherwise, the message indicates that value contains invalid trailing characters.
OverflowExceptionvalue, which represents a non-base 10 unsigned number, is prefixed with a negative sign.-or-value represents a number that is less than MinValue or greater than MaxValue.
See Also