示例#1
0
 public BufferManager(NativeBufferPool pool, IntPtr memory, int length)
 {
     _pool    = pool;
     _pointer = memory;
     _length  = length;
 }
示例#2
0
 public BufferManager(NativeBufferPool pool, IntPtr memory, int length) : base(null, 0, length, memory)
 {
     _pool = pool;
 }