示例#1
0
 public void CopyTo(ExpandState other)
 {
     other.expandedNodes.Clear();
     foreach (var n in this.expandedNodes)
     {
         other.expandedNodes.Add(n);
     }
 }
示例#2
0
 public void CopyTo(ExpandState other)
 {
     other.expandedNodes.Clear();
     foreach (var n in this.expandedNodes) other.expandedNodes.Add(n);
 }
示例#3
0
 public ExpandState(ExpandState cc)
 {
     this.expandedNodes = new HashSet<string>(cc.expandedNodes);
 }
示例#4
0
 public ExpandState(ExpandState cc)
 {
     this.expandedNodes = new HashSet <string>(cc.expandedNodes);
 }