如果您有一个包含许多条目的大文本文件怎么办,您必须获取这些条目并将它们保存到 List 有没有比我的代码中的传统方式更快的方法来做到这一点
/// <summary>
/// Reads Data from the given path
/// </summary>
/// <param name="path">Path of the File to read</param>
public void Read(string path)
{
try
{
FileStream file = new FileStream(path, FileMode.Open);
StreamReader reader = new StreamReader(file);
string line;
while ((line = reader.ReadLine()) != null)
{
myList.Add(line);
System.Windows.Forms.Application.DoEvents();
}
reader.Close();
file.Close();
}
catch (Exception c)
{
MessageBox.Show(c.Message);
}
}