public bool Equals(LineSegment32 other) => A.Equals(other.A) && B.Equals(other.B);
 public bool Equals(Rectangle32 other) => Position.Equals(other.Position) && Size.Equals(other.Size);
Exemple #3
0
 public bool Equals(Circle32 other) => Center.Equals(other.Center) && Radius == other.Radius;