Advertisement
Guest User

Untitled

a guest
Jun 25th, 2019
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. Public class A{
  2. public string name;
  3. public List <B> listClassB;
  4. }
  5.  
  6. Public class B{
  7. public List<C> listClassC;
  8. public string name;
  9. }
  10.  
  11. Public class C{
  12. public string name;
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement