我得到這個代碼來存儲一些數字到特定的數組,但IDE向我顯示了這個錯誤「使用未分配的局部變量ascchar'」。數組讀取問題c#
private void strtoasc()
{
int[] ascchar;
int i = 0;
foreach (char stg in tbox_string.Text)
{
ascchar[i] = Convert.ToInt32(stg);
i++;
}
}
THX,問題就迎刃而解了 – jamescaruso