Yeppp.CpuIsaFeature.Equals C# (CSharp) 메소드

Equals() 공개 메소드

Compares for equality with another CpuIsaFeature object.
Comparison is performed by value.
public Equals ( CpuIsaFeature other ) : bool
other CpuIsaFeature
리턴 bool
        public bool Equals(CpuIsaFeature other)
        {
            if (other == null)
                return false;

            return ((this.id ^ other.id) | (this.architectureId ^ other.architectureId)) == 0;
        }

Same methods

CpuIsaFeature::Equals ( System other ) : bool