Lucene.Net.Store.DataOutput.Write C# (CSharp) Method

Write() public method

public Write ( byte b, int off, int len ) : void
b byte
off int
len int
return void
        public void Write(byte[] b, int off, int len)
        {
            WriteBytes(b, off, len);
        }