Exemple #1
0
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="name">Name of the node</param>
 public YuGiNode(string name)
 {
     Name     = name;
     Children = new ChildItemCollection <YuGiNode, YuGiNode>(this);
 }
Exemple #2
0
 /// <summary>
 /// Constructor for serialization
 /// </summary>
 public YuGiNode()
 {
     Children = new ChildItemCollection <YuGiNode, YuGiNode>(this);
 }