public static byte[] Decompress(byte[] input, out int length) { Huffman h = new Huffman(); return(h.Decompress(input, out length)); }
public static byte[] Decompress(byte[] input, out int length) { Huffman h = new Huffman(); return h.Decompress(input, out length); }