我是 C# 和一般编程的新手。我正在尝试读取 txt 文件的内容并将它们加载到arraylist
. 我不知道在我的while
循环中使用什么条件。
void LoadArrayList()
{
TextReader tr;
tr = File.OpenText("C:\\Users\\Maattt\\Documents\\Visual Studio 2010\\Projects\\actor\\actors.txt");
string Actor;
while (ActorArrayList != null)
{
Actor = tr.ReadLine();
if (Actor == null)
{
break;
}
ActorArrayList.Add(Actor);
}
}