Exemplo n.º 1
0
 private static bool MatchFields(RectInt32 a, RectInt32 m)
 {
     return (a.TopLeft == m.TopLeft && a.BottomRight == m.BottomRight);
 }
Exemplo n.º 2
0
 public bool Equals(RectInt32 p)
 {
     return MatchFields(this, p);
 }