2013年9月18日

关于 StreamReader 的 ReadToEnd() 方法

摘要: 下面这段代码using (WebResponse response = request.GetResponse()){ using (StreamReader rd = new StreamReader(response.GetResponseStream())) { XDocument xd = XDocument.Load(rd.ReadToEnd()); }}在VS2005会报 :路径中有非法字符错误 如果改成using (WebResponse respons... 阅读全文

posted @ 2013-09-18 14:05 齐文宣 阅读(1934) 评论(0) 推荐(0)

导航