/** * Test FailedDevice equality. * True if the devices are the same. * @since 2.4.0 */ public bool Equals(FailedDevice other) { return this.IsValid && other.IsValid && this.PnpId == other.PnpId; }
/** * Test FailedDevice equality. * True if the devices are the same. * @since 2.4.0 */ public bool Equals(FailedDevice other) { return(this.IsValid && other.IsValid && this.PnpId == other.PnpId); }