Guest User

Untitled

a guest
Oct 22nd, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.59 KB | None | 0 0
  1.         public class Bar
  2.         {
  3.             public Bar()
  4.             {
  5.                 peepee = "ffgg";
  6.                 wizwiz = "fgfg";
  7.             }
  8.             public string peepee { get; set; }
  9.             public string wizwiz { get; set; }
  10.         }
  11.         public class Foo
  12.         {
  13.             public Foo()
  14.             {
  15.                 poop = "fgfg";
  16.                 shit = "fgf";
  17.                 feces = new Bar();
  18.             }
  19.             public string poop {get; set;}
  20.             public string shit {get; set;}
  21.             public Bar feces { get; set; }
  22.         }
Add Comment
Please, Sign In to add comment