Advertisement
TankorSmash

Untitled

Oct 8th, 2012
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.26 KB | None | 0 0
  1. class PARENT {
  2.     public PARENT(string msg) {
  3.         //have sex
  4.     }
  5. }
  6.  
  7. class CHILD: PARENT {
  8.     public CHILD(string msg): base(msg) {
  9.         //cry
  10.     }
  11. }
  12.  
  13. ////then somewhere else you call
  14. new CHILD("random string");
  15.  
  16. //do you cry or have sex first?
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement