我試圖打印對象(學生) 的屬性之一,但是是運行錯誤(對象引用未設置爲對象的實例) 能有人幫助我,請對象引用未設置爲對象錯誤實例c#
while (rdStd.Read())
{
arry[counter] = new Student(Convert.ToDouble(rdStd.GetValue(0)), Convert.ToDouble(rdStd.GetValue(1)), Convert.ToDouble(rdStd.GetValue(2)));
counter++;
TextBox3.Text += arry[counter].getlon() +"" ; //here is the error
}
什麼是'getlon'方法?你調試了你的代碼嗎? http://stackoverflow.com/questions/4660142/what-is-a-nullreferenceexception-and-how-do-i-fix-it –
你認爲,也許你想等待+2,直到第二次作業後? –
瞭解如何在Visual Studio中使用調試器 - 您可以非常快速地自行解決此類問題,並且不難 –