filestream的一个问题
在书上看到一段代码程序代码:
filestream filestream=new FileStream(Path,FileAccess.Read); int number; byte[] bye=new byte[8]; NetworkStream stream=new NetworkStream(mysock); while((number=filestream.Read(bye,0,8))!=0) { stream.Write(bye,0,8); stream.Flush(); bye=new byte[8]; }请问为什么while里面还要弄个byte数组?我觉得不需要,是不是写错了?