예제 #1
0
파일: Node.cs 프로젝트: ngin/treetest
 public void AddFirstSibling(Node <T> childNode)
 {
     Parent.AddFirstChild(childNode);
 }