Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jun 12th, 2012  |  syntax: None  |  size: 0.21 KB  |  hits: 17  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. C#: Nested Hierarchy of Objects Pattern
  2. public class Nested
  3. {
  4.    public string Name {get; set;}
  5.  
  6.    public List<Nested> Parents {get {TODO}}
  7.    public List<Nested> Children {get {TODO}}
  8. }
  9.        
  10. public Nested parent;