c#中System.Text.Encoding.Default.GetBytes(str)的返回值类型

        string str = "abc123中文汉字";
        byte[] bytes = System.Text.Encoding.Default.GetBytes(str);
        for(int j = 0; j < bytes.Length; j++)
        {
            Console.WriteLine(bytes[j]);
        }

输出结果为:
97
98
99
49
50
51
228
184
173
230
150
135
230
177
137
229
173
151

是对应字符的ASCII值

你可能感兴趣的:(c#,c#)