Class CRC32
Fast CRC32 error-checking code calculation for network packets.
Inheritance
System.Object
CRC32
Namespace: SuperNet.Netcode.Util
Assembly: cs.temp.dll.dll
Syntax
public static class CRC32
Methods
Compute(Byte[], Int32, Int32)
Compute a CRC32 code for the input array segment.
Declaration
public static uint Compute(byte[] array, int offset, int count)
Parameters
| Type | Name | Description |
|---|---|---|
| System.Byte[] | array | Array to read from. |
| System.Int32 | offset | Offset in the array to start reading from. |
| System.Int32 | count | Number of bytes to read. |
Returns
| Type | Description |
|---|---|
| System.UInt32 | CRC32 code of the input. |