iTextSharp.text.pdf.codec.PngWriter.crc C# (CSharp) Метод

crc() приватный статический Метод

private static crc ( byte buf ) : uint
buf byte
Результат uint
        private static uint crc(byte[] buf)
        {
            return update_crc(0xffffffffU, buf, 0, buf.Length) ^ 0xffffffffU;
        }

Same methods

PngWriter::crc ( byte buf, int offset, int len ) : uint