我想将字符串存储在程序中以便以后使用它,并且还想显示输入了哪些字符串。代码看起来像这样
public static void UseParam(params string[] list)
{
for (int i = 0; i < list.Length; i++)
{
MessageBox.Show(list[i].ToString());
}
}
...
UseParam("1", " two thre", "four");
为什么该代码不想显示我输入的字符串?