using System;
using System.Collections.Generic;
using System.Text;
namespace Test
{
class Program
{
static void Main(string[] args)
{
string[] t =new string[]{"C","Sh","a","rp"};
//遍历字符串数组t
foreach(string t in new)
{
Console.Write(x);
}
}
}
}
你的迭代变量是t, 输出的是x
in的右边是数组名 数组名是t 不是new
in的左边是变量 用来输出
然后他下面已经给了输出的变量名是x
所以应该是foreach(string x in t)
foreach(string x in t)
{
Console.Write(x);
}