System.util.zlib.InfBlocks.set_dictionary C# (CSharp) Method

set_dictionary() private method

private set_dictionary ( byte d, int start, int n ) : void
d byte
start int
n int
return void
        internal void set_dictionary(byte[] d, int start, int n){
            System.Array.Copy(d, start, window, 0, n);
            read = write = n;
        }