C# Класс SharpMod.CRC32

A class which exposes the server CRC32 functionality
Показать файл Открыть проект

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

Метод Описание
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