コード例 #1
0
 private static bool MatchFields(RectInt32 a, RectInt32 m)
 {
     return (a.TopLeft == m.TopLeft && a.BottomRight == m.BottomRight);
 }
コード例 #2
0
 public bool Equals(RectInt32 p)
 {
     return MatchFields(this, p);
 }