摘要: OpenFileDialog ofd = new OpenFileDialog(); ofd.Filter="文本文件|*.txt"; if(ofd.ShowDialog()==false) { return; } //IEnumerable lines = // File.ReadLines(ofd.FileName,Encoding.Default); string[] lines = ... 阅读全文
posted @ 2013-11-12 19:39 南瓜asp 阅读(310) 评论(0) 推荐(0)