Ionic.Crc.CRC32.Reset C# (CSharp) 메소드

Reset() 공개 메소드

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
리턴 void
        public void Reset()
        {
            _register = 0xFFFFFFFFU;
        }