C# 클래스 PocketCampus.Main.PngWriter.CRC32

Computes the CRC32 value for a given data set
파일 보기 프로젝트 열기: accandme/pocketcampus

공개 메소드들

메소드 설명
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