C# Класс PocketCampus.Main.PngWriter.CRC32

Computes the CRC32 value for a given data set
Показать файл Открыть проект

Открытые методы

Метод Описание
Add ( byte buf, int len ) : void

Adds to the current running CRC32 the bytes from buf[].

Add ( byte buf, int len, uint offset ) : void

Adds to the current running CRC32 the bytes from buf[].

Описание методов

Add() публичный Метод

Adds to the current running CRC32 the bytes from buf[].
public Add ( byte buf, int len ) : void
buf byte A byte[] to process.
len int The length of the byte[].
Результат void

Add() публичный Метод

Adds to the current running CRC32 the bytes from buf[].
public Add ( byte buf, int len, uint offset ) : void
buf byte A byte[] to process.
len int The length of the byte[].
offset uint The offset to start processing byte[] at.
Результат void