示例#1
0
文件: Node.cs 项目: ngin/treetest
 public void AddFirstSibling(Node <T> childNode)
 {
     Parent.AddFirstChild(childNode);
 }