从参数中释放内存流

时间:2017-08-02 07:34:51

标签: c# stream memorystream

我有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不会处理该值。请告诉我出错的地方。

提前致谢。

0 个答案:

没有答案