我的代码:
string input1;
input1 = Console.ReadLine();
Console.WriteLine("byte output");
byte[] bInput1 = Encoding.Unicode.GetBytes(input1);
for (int x = 0; x < bInput1.Length; x++)
Console.WriteLine("{0} = {1}", x, bInput1[x]);
产出:
104 0 101 0 108 0 108 0 111 0
对于输入 "hello"
有一个字符映射的参考资料我可以理解这个吗?