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

更新时间:2020 年 6 月 23 日

146 次浏览

开启你的 职业

通过完成课程获得认证

立即开始
广告