Advertisement
wingman007

C#_OOP_2a_Rectangle.cs

Mar 22nd, 2014
186
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.74 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5.  
  6. namespace OOPGeometry2
  7. {
  8.     class Rectangle : Figure
  9.     {
  10.         private double x;
  11.         private double y;
  12.         private const string figureType = "Rectangle";
  13.  
  14.         public double X
  15.         {
  16.             get { return x; }
  17.             set { x = value; }
  18.         }
  19.  
  20.         public double Y
  21.         {
  22.             get { return y; }
  23.             set { y = value; }
  24.         }
  25.  
  26.         public Rectangle(double x, double y)
  27.             : base("Rectangle")
  28.         {
  29.             this.x = x;
  30.             this.y = y;
  31.         }
  32.  
  33.         public override double CalculateSurface()
  34.         {
  35.             return x * y;
  36.         }
  37.     }
  38. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement