byte[] input = new byte[] {2, 4, 5, 2, 1};
ByteBuffer bytebuf = ByteBuffer.wrap(input);
ByteBuffer.wrap(byte[] array)
方法使缓冲区和数组相互连接,对缓冲区的修改将导致数组被修改,反之亦然。
C# 中的等价物ByteBuffer
是 memorystream。但我不知道如何将 memorystream 与 array likesByteBuffer.wrap()
方法联系起来。
有人能说出ByteBuffer.wrap()
C# 中的等价物吗?我到处搜索,但根本找不到答案。
提前致谢。