コード例 #1
0
 /// <inheritdoc />
 public bool Equals(SurroundTopologyDisplay other)
 {
     if (ReferenceEquals(null, other))
     {
         return(false);
     }
     if (ReferenceEquals(this, other))
     {
         return(true);
     }
     return((DisplayId == other.DisplayId) && Overlap.Equals(other.Overlap) &&
            (PixelShiftType == other.PixelShiftType) && (Rotation == other.Rotation));
 }