我从C# 开始System.Buffers.MemoryPool<T>,System.Memory<T>希望减少字节数组的分配。
我有一堆字节和字节数组,我需要将它们复制到一个单字节数组中(用于仅适用于 的方法byte[],而不是Span/ Memory)。我正在做这样的事情:
byte aByte = 0x01;
byte[] aByteArray = { 0x02, 0x03, 0x04 };
byte[] anotherByteArray = { 0x05, 0x06, 0x07 };
using (var buffer = MemoryPool<byte>.Shared.Rent(7))
{
Span<byte> target;
target = buffer.Memory.Slice(0, aByteArray.Length).Span;
aByteArray.CopyTo(target);
target = buffer.Memory.Slice(aByteArray.Length, anotherByteArray.Length).Span;
aByteArray.CopyTo(target);
// How to copy a single byte?
}
所以,我想出了如何将字节数组复制到缓冲区,但不知道如何设置单个字节。我试过了buffer.Memory.Span[0] = aByte,但Span没有二传手。
波斯汪
相关分类