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