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