byte[] b = new byte[100];
for (byte i = 0; i < b.Length; i++) b[i] = i;
System.IO.MemoryStream ms = new System.IO.MemoryStream();
ms.Write(b, 0, b.Length);
ms.Flush();
byte[] c = new byte[b.Length];
ms.Read(c, 0, c.Length);
按上面这样操作后,c数组的元素值全为零,为什么啊?