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