StreamReader 的ReadLine,Read,ReadToEnd方法
摘要:
1.ReadLine() 当遇到\n \r 或者是\r\n的时候 此方法返回这前面的字符串,然后内部的指针往后移一位下次从新的地方开始读,直到遇到数据的结尾处返回null,所以经常这样使用 String content; using(StreamReader sr = new StreamReade 阅读全文
posted @ 2018-03-13 16:37 改变从今天开始 阅读(3393) 评论(0) 推荐(0) 编辑