Advertisement
Guest User

Person

a guest
Jul 7th, 2019
322
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.24 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4.  
  5. namespace Person
  6. {
  7.     public class Child : Person
  8.     {
  9.         public Child(string name, int age)
  10.             : base(name, age)
  11.         {
  12.  
  13.         }
  14.     }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement