C#中如何逐行读取txt中的数据并赋值到一维数组中?

2024-11-21 08:37:59
推荐回答(1个)
回答(1):

只给最经典的。楼上的些方法都不能满足“逐行”这两个字
public IEnumerable GetStringArray()
{
StreamReader sr = new StreamReader("文件物理路径");
string str = null; string temp = null;
while ((temp = sr.ReadLine()) != null)
{
// System.Threading.Thread.sleep(3000);
yield return temp;
}
}