小编典典

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

all

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


阅读 212

收藏
2022-03-01

共1个答案

小编典典

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

Stream stream = new MemoryStream(byteArray);
2022-03-01