C# Convert ToUInt64(String)
Description
Convert ToUInt64(String)
converts the specified string
representation of a number to an equivalent 64-bit unsigned integer.
Syntax
Convert.ToUInt64(String)
has the following syntax.
[CLSCompliantAttribute(false)]
public static ulong ToUInt64(
string value
)
Parameters
Convert.ToUInt64(String)
has the following parameters.
value
- A string that contains the number to convert.
Returns
Convert.ToUInt64(String)
method returns A 64-bit signed integer that is equivalent to the number in value, or 0 (zero)
if value is null.
Example
/* www . ja v a2 s . c o m*/
using System;
public class MainClass{
public static void Main(String[] argv){
Console.WriteLine(Convert.ToUInt64("123"));
}
}
The code above generates the following result.