mjc65

abstr1

Mar 28th, 2019
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. abstract class Polygon  
  2. {    
  3.     public double Length { get; protected set; }    
  4.     public double Width { get; protected set; }
  5.     abstract public double GetArea();
  6. }
Advertisement
Add Comment
Please, Sign In to add comment