获取特定索引处的 char 并枚举该字符串

你可以使用 Substring 方法从任何给定位置的字符串中获取任意数量的字符。但是,如果你只需要一个字符,则可以使用字符串索引器在任何给定索引处获取单个字符,就像使用数组一样:

string s = "hello";
char c = s[1]; //Returns 'e'

请注意,返回类型为 char,与返回 string 类型的 Substring 方法不同。

你还可以使用索引器遍历字符串的字符:

string s = "hello";
foreach (char c in s)
    Console.WriteLine(c);
/********* This will print each character on a new line:
h
e
l
l
o
**********/