コード例 #1
0
ファイル: Rectangle.cs プロジェクト: ivanov961/HackBulgaria
 public Rectangle(Rectangle rectangle)
 {
     this.upLeft = new Point(rectangle.upLeft);
     this.downRight = new Point(rectangle.downRight);
 }
コード例 #2
0
ファイル: Program.cs プロジェクト: ivanov961/HackBulgaria
 static void Main(string[] args)
 {
     Rectangle rect = new Rectangle(new Point(0, 2), new Point(2, 0));
     Rectangle rect2 = new Rectangle(new Point(1, 2), new Point(2, 0));
     Console.WriteLine(rect!=rect2);
 }