mjc65

inherit2

May 6th, 2020
892
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.27 KB | None | 0 0
  1. class Program
  2. {
  3.     static void Main(string[] args)
  4.     {
  5.         Rectangle alpha = new Rectangle(10, 45);
  6.         Console.WriteLine("Width = {0}, Length = {1}, Area = {2}", alpha.Width, alpha.Length, alpha.GetArea());
  7.         Console.WriteLIne("The shape is a {0}", Rectangle.ShapeNama);
  8.     }
  9. }
Advertisement
Add Comment
Please, Sign In to add comment