RFID.RFIDInterface.Source_FrequencyBand.Equals C# (CSharp) Method

Equals() public method

public Equals ( Source_FrequencyBand rhs ) : bool
rhs Source_FrequencyBand
return bool
        public bool Equals( Source_FrequencyBand rhs )
        {
            if ( null == ( System.Object ) rhs )
            {
                return false;
            }

            return
                    this.band           == rhs.band
                &&  this.state          == rhs.state
                &&  this.multiplier     == rhs.multiplier
                &&  this.divider        == rhs.divider
                &&  this.minDACBand     == rhs.minDACBand
                &&  this.affinityBand   == rhs.affinityBand
                &&  this.maxDACBand     == rhs.maxDACBand
                &&  this.guardBand      == rhs.guardBand;
        }

Same methods

Source_FrequencyBand::Equals ( System obj ) : bool