我想将列表元素更改为大写。但是这段代码出错了。你能帮帮我吗?
List<string> fruit = new List<string>();
fruit.Add("apple");
fruit.Add("cherry");
fruit.Add("orange");
fruit.ForEach(
delegate(string s)
{
s = s.ToUpper();
}
);
fruit.ForEach(
delegate(string s)
{
Console.WriteLine(s);
}
);