Exemplo n.º 1
0
 internal static ByteBuffer Allocate(int bufferSize)
 {
     var buff = new ByteBuffer();
     buff.SetLength(bufferSize);
     return buff;
 }
Exemplo n.º 2
0
 internal static ByteBuffer Allocate(int BUFFER_SIZE)
 {
     var buff = new ByteBuffer();
     buff.SetLength(BUFFER_SIZE);
     return buff;
 }