0
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
try
{
string[] names = new string[2];
string g = names[2];
}
catch(Exception error) {
MessageBox.Show(error);
}
}
}
我不知道最近怎麼了,它似乎找不到錯誤。如果你能幫助我,這會有幫助嗎?異常消息不能正常工作
您看到了什麼結果? –