BTDB.Buffer.ByteBuffer.NewAsync C# (CSharp) Method

NewAsync() public static method

public static NewAsync ( byte buffer ) : ByteBuffer
buffer byte
return ByteBuffer
        public static ByteBuffer NewAsync(byte[] buffer)
        {
            return new ByteBuffer(buffer, 0, buffer.Length);
        }

Same methods

ByteBuffer::NewAsync ( byte buffer, int offset, int length ) : ByteBuffer