Ionic.Crc.CRC32.Reset C# (CSharp) Method

Reset() public method

Reset the CRC-32 class - clear the CRC "remainder register."

Use this when employing a single instance of this class to compute multiple, distinct CRCs on multiple, distinct data blocks.

public Reset ( ) : void
return void
        public void Reset()
        {
            _register = 0xFFFFFFFFU;
        }