摘要: 直接上代码,备忘中。。。 public static string path = @"C:\TestFolder\test.txt"; public static void ReadTxtFile() { string[] strText = File.ReadAllLines(path); //使用File.ReadAllLines()方法来按行读取文件内容 for (int i = 0; i < strText.Length; i++) //如果不想读文件的第一行,i=1就行咯 { ... 阅读全文
posted @ 2013-06-07 17:22 爹子王 阅读(318) 评论(0) 推荐(0) 编辑