在C#中,可以使用char
类型的隐式转换来获取字符串中字符的ASCII值。以下是一个简单的示例:
using System;
class Program
{
static void Main()
{
string str = "Hello, World!";
for (int i = 0; i < str.Length; i++)
{
char c = str[i];
int asciiValue = c;
Console.WriteLine($"The ASCII value of '{c}' is {asciiValue}");
}
}
}
在这个示例中,我们遍历了字符串str
中的每个字符,并使用char
类型的隐式转换将其转换为其对应的ASCII值。然后,我们将每个字符及其ASCII值输出到控制台。
领取专属 10元无门槛券
手把手带您无忧上云