我是初學者,我有一個小問題。我需要檢查它是不是空的組合框。現在,當我點擊按鈕,組合框給出零誤差NullReferenceException當我嘗試在組合框中選擇
「類型的未處理的異常‘System.NullReferenceException’ 發生在WindowsFormsApplication4.exe
其他信息:對象引用不設置到一個對象的實例。
private void Wykonaj_Click(object sender, EventArgs e)
{
if (Combobox1.SelectedIndex.ToString() != null)
{
if (Combobox.SelectedItem.ToString() != "Audi")
{
wersja= "110";
}
else
{
wersja = "101";
}
}
}
價值在哪裏'wersja'聲明? – garfbradaz