C# 클래스 SharpMod.CRC32

A class which exposes the server CRC32 functionality
파일 보기 프로젝트 열기: txdv/sharpmod

공개 메소드들

메소드 설명
CRC32 ( ) : System

Creates an instance of the CRC32 class

CRC32 ( IntPtr ptr ) : System

Creates an instance of the CRC32 class, the pointer points to the spot where the data is accumulated

Final ( ) : long

Finalizes the CRC32 algorithm and returns a value

Process ( IntPtr ptr, int size ) : void

Processes a memory segment

Process ( char ch ) : void

Processes a character

Process ( int i ) : void

Process an Integer

Process ( long l ) : void

Process a long

Process ( string str ) : void

메소드 상세

CRC32() 공개 메소드

Creates an instance of the CRC32 class
public CRC32 ( ) : System
리턴 System

CRC32() 공개 메소드

Creates an instance of the CRC32 class, the pointer points to the spot where the data is accumulated
public CRC32 ( IntPtr ptr ) : System
ptr System.IntPtr /// A pointer to an accumulation spot ///
리턴 System

Final() 공개 메소드

Finalizes the CRC32 algorithm and returns a value
public Final ( ) : long
리턴 long

Process() 공개 메소드

Processes a memory segment
public Process ( IntPtr ptr, int size ) : void
ptr System.IntPtr /// A pointer to the memory chunk ///
size int /// the size of the memory ///
리턴 void

Process() 공개 메소드

Processes a character
public Process ( char ch ) : void
ch char /// A character to process ///
리턴 void

Process() 공개 메소드

Process an Integer
public Process ( int i ) : void
i int /// An integer to process ///
리턴 void

Process() 공개 메소드

Process a long
public Process ( long l ) : void
l long /// A long ///
리턴 void

Process() 공개 메소드

public Process ( string str ) : void
str string
리턴 void