Static function to calculate CRC32 checksum.

Namespace: BasicCard
Assembly: BasicCard (in BasicCard.dll) Version: 2.5.2.0 (2.5.2.0)

Syntax

C#
public static int Calculate(
	byte[] data,
	int startpos,
	int len
)
Visual Basic
Public Shared Function Calculate ( 
	data As Byte(),
	startpos As Integer,
	len As Integer
) As Integer
Visual C++
public:
static int Calculate(
	array<unsigned char>^ data, 
	int startpos, 
	int len
)
F#
static member Calculate : 
        data : byte[] * 
        startpos : int * 
        len : int -> int 

Parameters

data
Type: array<System..::..Byte>[]()[][]
data for which to calculate checksum
startpos
Type: System..::..Int32
start position with data
len
Type: System..::..Int32

[Missing <param name="len"/> documentation for "M:BasicCard.Crc32.Calculate(System.Byte[],System.Int32,System.Int32)"]

Return Value

Type: Int32
crc checksum

See Also