小编典典

如何在C#中将结构System.Byte byte []转换为System.IO.Stream对象?

c#

如何在 C#* 中将struct转换System.Byte byte[]System.IO.Stream对象? *


阅读 394

收藏
2020-05-19

共1个答案

小编典典

将字节数组转换为流的最简单方法是使用MemoryStream类:

Stream stream = new MemoryStream(byteArray);
2020-05-19