simonradev

Rectangle

Jun 30th, 2017
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.23 KB | None | 0 0
  1. namespace DrawingTool
  2. {
  3.     public class Rectangle : Figure
  4.     {
  5.         public Rectangle(int firstSide, int secondSide) :
  6.             base(firstSide)
  7.         {
  8.             this.secondSide = secondSide;
  9.         }
  10.     }
  11. }
Add Comment
Please, Sign In to add comment