Org.BouncyCastle.Utilities.Zlib.StaticTree.StaticTree C# (CSharp) Method

StaticTree() private method

private StaticTree ( short static_tree, int extra_bits, int extra_base, int elems, int max_length ) : System
static_tree short
extra_bits int
extra_base int
elems int
max_length int
return System
        internal StaticTree(short[] static_tree,
            int[] extra_bits,
            int extra_base,
            int elems,
            int max_length
            ){
            this.static_tree=static_tree;
            this.extra_bits=extra_bits;
            this.extra_base=extra_base;
            this.elems=elems;
            this.max_length=max_length;
        }
    }
StaticTree