Exemple #1
0
 public bool Equals(Circle other)
 {
     return this.radius == other.radius;
 }
Exemple #2
0
 public Circle(Circle other)
 {
     this.radius = other.radius;
 }