我想在過程中存儲字符串以便使用它,並且還想顯示哪些字符串是輸入的。該代碼看起來象如何在函數中保存params字符串?
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");
爲什麼代碼不想顯示我這串輸入?
你能改述這個問題嗎,不確定你的意思? – V4Vendetta
你會得到什麼?錯誤?例外?沒有? – Oded
我不確定你的問題是什麼,該代碼顯示3個消息框與3個字符串。 –