NetWrok.HTTP.Zlib.CRC32.ComputeCrc32 C# (CSharp) Method

ComputeCrc32() public method

Get the CRC32 for the given (word,byte) combo. This is a computation defined by PKzip.
public ComputeCrc32 ( Int32 W, byte B ) : Int32
W System.Int32 The word to start with.
B byte The byte to combine it with.
return System.Int32
        public Int32 ComputeCrc32(Int32 W, byte B)
        {
            return _InternalComputeCrc32 ((UInt32)W, B);
        }