考虑以下字符串:string str="A C# string"; 什么是使用C#打印str中每个字符的ASCII值的最有效方法。 最佳答案 这是一个替代方案,因为您不喜欢将类型转换为int:foreach(byte b in System.Text.Encoding.UTF8.GetBytes(str.ToCharArray())) Console.Write(b.ToString());