Ejemplo n.º 1
0
 public TableRow()
 {
     Attributes = new TagAttributeCollection(this);
     Cells      = new NodeCollection <TableCell>(this);
 }
Ejemplo n.º 2
0
 public DebugView(NodeCollection <TNode> owner)
 {
     this.owner = owner;
 }
Ejemplo n.º 3
0
 public Table()
 {
     Attributes = new TagAttributeCollection(this);
     Rows       = new NodeCollection <TableRow>(this);
 }
Ejemplo n.º 4
0
 public MyEnumerator(NodeCollection <TNode> owner)
 {
     Debug.Assert(owner != null);
     _Owner = owner;
 }