Advertisement
Filkolev

Other Way Around

Dec 26th, 2014
218
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.27 KB | None | 0 0
  1.         public Person(string name, int age, string email)
  2.             : this(name, age)
  3.         {
  4.             this.Email = email;
  5.         }
  6.  
  7.         public Person(string name, int age)      
  8.         {
  9.             this.Name = name;
  10.             this.Age = age;
  11.         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement