Yeppp.CpuIsaFeature.GetHashCode C# (CSharp) Method

GetHashCode() public method

Provides a hash for the object.
Non-equal CpuIsaFeature objects are guaranteed to have different hashes.
public GetHashCode ( ) : int
return int
        public override int GetHashCode()
        {
            return unchecked((int)(this.id ^ (this.architectureId << 16)));
        }