Sample code for 30+ languages & platforms
VB.NET

Example: Crypt2.CrcFile method

Demonstrates how to call the CrcFile method.

Chilkat VB.NET Downloads

VB.NET
Dim crypt As New Chilkat.Crypt2

Dim filePath As String = "c:/temp/someFile.dat"

Dim crc32 As UInt32 = crypt.CrcFile("crc-32",filePath)
Debug.WriteLine(crc32)

Dim crc8 As UInt32 = crypt.CrcFile("crc8",filePath)
Debug.WriteLine(crc8)