Advertisement
mjc65

ionherit2

May 6th, 2020
772
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. class Rectangle
  2. {
  3.     public static string ShapeName
  4.         {
  5.             get { return "Rectangle"; }
  6.         }
  7.  
  8.         public Rectangle(double length, double width)
  9.         {
  10.             Length = length;
  11.             Width = width;
  12.         }
  13.  
  14.         public double GetArea()
  15.         {
  16.             return length * width;
  17.         }  
  18.     }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement