Пример #1
0
 private static bool MatchFields(RectF a, RectF m)
 {
     return (a.TopLeft == m.TopLeft && a.BottomRight == m.BottomRight);
 }
Пример #2
0
 public bool Equals(RectF p)
 {
     return MatchFields(this, p);
 }