我有MemoryStream没有处理该值的代码。
MemoryStream ms = new MemoryStream();
string result = RandomFunction(out ms, string input) //the stream value is generated inside the Randomfunction
// Some code which uses the bytes of ms stream
ms.Close()
所以即使在关闭流后。变量ms不会处理该值。请告诉我出错的地方。
提前致谢。