Example #1
0
        public bool Equals(I2CSlaveAddress other)
        {
            if (other == null)
            {
                return(false);
            }

            if (ReferenceEquals(other, this))
            {
                return(true);
            }

            return(Value.Equals(other.Value));
        }
Example #2
0
 public bool Equals(I2CSlaveAddress other)
 {
     return(Value.Equals(other.Value));
 }