轻松地将数据插入流的任何位置而不覆盖?
使用普通内存流执行此操作的最简单方法是什么?除了创建 2 个流之外。
What's the easiest way to do this with a normal memorystream? Aside from creating 2 streams.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最简单的选择是使用
List
而不是MemoryStream
并调用InsertRange
方法。The simplest option is to use a
List<byte>
instead of aMemoryStream
and call theInsertRange
method.