ICSharpCode.SharpZipLib.Zip.Compression.DeflaterHuffman.Tree.GetEncodedLength C# (CSharp) Method

GetEncodedLength() public method

Get encoded length
public GetEncodedLength ( ) : int
return int
            public int GetEncodedLength()
            {
                int len = 0;
                for (int i = 0; i < freqs.Length; i++) {
                    len += freqs[i] * length[i];
                }
                return len;
            }