本文介绍了C#中的进口是???在VB?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 我有这个: 进口(Stream s = response.GetResponseStream()){ int nread; do { nread = s.Read(buffer,0,(int)buffer.Length); fs.Write(buffer, 0,nread); } while(nread!= 0); } 如何用VB写这个? - 干杯, Crirus ----- ------------------------- 如果工作是好事,那么老板就会把这一切都从你那里拿走/> ------------------------------ I have this : imports (Stream s = response.GetResponseStream()) { int nread; do {nread = s.Read(buffer, 0, (int)buffer.Length);fs.Write(buffer, 0, nread);} while (nread != 0);} How to write in VB this? --Cheers,Crirus ------------------------------If work were a good thing, the boss would take it all from you ------------------------------推荐答案 你确定它不是在阅读''使用(流s = ......''? - Herfried K. Wagner [MVP] < http ://www.mvps.org/dotnet> Are you sure it''s not reading ''using (Stream s = ...''? --Herfried K. Wagner [MVP]<http://www.mvps.org/dotnet> 你确定它不是吗?阅读''使用(Stream s = ...''? - Herfried K. Wagner [MVP] < http://www.mvps。 org / dotnet> Are you sure it''s not reading ''using (Stream s = ...''? -- Herfried K. Wagner [MVP] <http://www.mvps.org/dotnet> 你确定它不是在阅读''使用(Stream s = ......''? - Herfried K. Wagner [MVP] < http://www.mvps.org/dotnet> Are you sure it''s not reading ''using (Stream s = ...''? -- Herfried K. Wagner [MVP] <http://www.mvps.org/dotnet> 这篇关于C#中的进口是???在VB?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!
10-27 09:21