CRC32Bytes Method

Html Agility Pack

Collapse imageExpand ImageCopy imageCopyHover image
Compute a checksum for a given array of bytes.

Namespace: HtmlAgilityPack
Assembly: HtmlAgilityPack (in HtmlAgilityPack.dll) Version: 1.4.0.0 (1.4.0.0)

Syntax

C#
public static uint CRC32Bytes(
	byte[] bytes
)
Visual Basic
Public Shared Function CRC32Bytes ( _
	bytes As Byte() _
) As UInteger
Visual C++
public:
static unsigned int CRC32Bytes(
	array<unsigned char>^ bytes
)

Parameters

bytes
Type: array<System..::..Byte>[]()[][]
The array of bytes to compute the checksum for.

Return Value

The computed checksum.

See Also