ToInt32() public static method

public static ToInt32 ( byte value, int startIndex ) : Int32
value byte
startIndex int
return Int32
Ejemplo n.º 1
0
        private void InnerInit(out int hashCode)
        {
            var hashBytes = ToByteArray();

            hashCode = Bits.ToInt32(new xxHash(32).ComputeHash(hashBytes));
        }