IO是什么意思
private void LoadOccupations(){
try
{
System.IO.StreamReader er = new System.IO.StreamReader ("../../Occupation.txt") ;
string input ;
do
{
input = er.ReadLine() ;
if (input = "")
{
this.comboBox1.Items.Add (input) ;
}
}while (er.Peek () != -1) ;
er.Close () ;
}
catch (System.Exception )
{
MessageBox.Show ("File no found") ;
}
}
中的System.IO是指什么IO又是什么。
还有就是er.Peek()的方法是做什么的。