public bool Equals(TuneMinerGPUsResult other)
 {
     return(other != null &&
            CoreClock.Equals(other.CoreClock) &&
            CoreVoltage.Equals(other.CoreVoltage) &&
            EqualityComparer <ConcurrentObservableDictionary <Coin, HashRate> > .Default.Equals(HashRates, other.HashRates) &&
            MemClock.Equals(other.MemClock) &&
            PowerConsumption.Equals(other.PowerConsumption));
 }
예제 #2
0
 public bool Equals(VideoCard other)
 {
     return(other != null &&
            BIOSVersion == other.BIOSVersion &&
            CoreClock.Equals(other.CoreClock) &&
            CoreVoltage == other.CoreVoltage &&
            DeviceID == other.DeviceID &&
            IsStrapped == other.IsStrapped &&
            MemClock.Equals(other.MemClock) &&
            PowerConsumption == other.PowerConsumption &&
            EqualityComparer <IVideoCardSignil> .Default.Equals(VideoCardSignil, other.VideoCardSignil));
 }