Guest User

Untitled

a guest
Oct 17th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. public class Rectangle : Shape
  2. {
  3. public int height, width;
  4. public Rectangle(int height,int width) { this.height = height; this.width = width; }
  5. public override double Square { get { return height*width; } }
  6. }
  7.  
  8. using System;
  9. using System.Collections.Generic;
  10. using System.Linq;
  11. using System.Text;
  12. using System.Threading.Tasks;
  13. using ConsoleApplication1;
  14.  
  15. namespace Test_Access
  16. {
  17.  
  18. class Program
  19. {
  20. static void Main(string[] args)
  21. {
  22. }
  23. }
  24. }
Add Comment
Please, Sign In to add comment