我想枚举 astring
而不是它返回chars
我想让迭代变量是 type string
。这可能不可能让迭代类型成为 astring
那么迭代这个字符串的最有效方法是什么?
我是否需要string
在循环的每次迭代中创建一个新对象,或者我可以以某种方式执行强制转换?
String myString = "Hello, World";
foreach (Char c in myString)
{
// what I want to do in here is get a string representation of c
// but I can't cast expression of type 'char' to type 'string'
String cString = (String)c; // this will not compile
}