C# 中的 Convert.ToByte 方法


Convert.ToByte 方法用于将指定值转换为 8 位无符号整数。

假设我们有一个 char 变量。

Char charVal = ‘a’;

现在,将其转换为 8 位无符号整数。

byte byteVal = Convert.ToByte(charVal);

现在,让我们看另一个示例。

示例

 在线演示

using System;
public class Demo {
   public static void Main() {
      char[] charVal = { 'p', 'q', 'r', 's' };
      foreach (char c in charVal) {
         byte byteVal = Convert.ToByte(c);
         Console.WriteLine("{0} is converted to = {1}", c, byteVal);
      }
   }
}

输出

p is converted to = 112
q is converted to = 113
r is converted to = 114
s is converted to = 115

更新于:2020 年 6 月 23 日

956 次浏览

开启您的职业生涯

通过完成课程获得认证

开始吧
广告