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
广告