C# 中的 Convert.ToUInt64 方法
使用 Convert.ToUInt64() 方法将指定值转换成 64 位无符号整数。
下面是我们的字符。
char ch = 'a';
现在,我们将其转换成一个 64 位无符号整数。
ulong res; res = Convert.ToUInt64(ch);
下面是完整示例。
示例
using System; public class Demo { public static void Main() { char ch = 'a'; ulong res; res = Convert.ToUInt64(ch); Console.WriteLine("Converted char value '{0}' to {1}", ch, res); } }
输出
Converted char value 'a' to 97
广告