ComponentAce.Compression.Libs.zlib.ZInputStream.skip C# (CSharp) Method

skip() public method

public skip ( long n ) : long
n long
return long
        public long skip(long n)
        {
            int len = 512;
            if (n < len)
                len = (int) n;
            byte[] tmp = new byte[len];
            return ((long) SupportClass.ReadInput(BaseStream, tmp, 0, tmp.Length));
        }