Advertisement
mjc65

abstracts

May 6th, 2020
774
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4.  
  5. namespace create_class
  6. {
  7.     abstract class Polygon
  8.     {
  9.         public double Length  { get; protected set; }
  10.         public double Width{ get; protected set; }
  11.         abstract public double GetArea();
  12.     }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement