コード例 #1
0
ファイル: FailedDevice.cs プロジェクト: VRWizards/VR-Project
 /**
 * 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;
 }
コード例 #2
0
ファイル: FailedDevice.cs プロジェクト: Cj4y/Dank-Dollars
 /**
  * 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);
 }