我想string[]
分配一个StreamReader
. 像:
try{
StreamReader sr = new StreamReader("a.txt");
do{
str[i] = sr.ReadLine();
i++;
}while(i < 78);
}
catch (Exception ex){
MessageBox.Show(ex.ToString());
}
我可以做到但不能使用字符串[]。我想做这个:
MessageBox.Show(str[4]);
如果您需要更多信息,请随时询问,我会更新。提前致谢...