Esempio n. 1
0
 /// <inheritdoc />
 public bool Equals(GridTopologyDisplay other)
 {
     if (ReferenceEquals(null, other))
     {
         return(false);
     }
     if (ReferenceEquals(this, other))
     {
         return(true);
     }
     return(DisplayDevice.Equals(other.DisplayDevice) && Overlap.Equals(other.Overlap) &&
            (Rotation == other.Rotation) && (CloneGroup == other.CloneGroup) &&
            (PixelShiftType == other.PixelShiftType));
 }