public void CopyTo(ExpandState other) { other.expandedNodes.Clear(); foreach (var n in this.expandedNodes) { other.expandedNodes.Add(n); } }
public void CopyTo(ExpandState other) { other.expandedNodes.Clear(); foreach (var n in this.expandedNodes) other.expandedNodes.Add(n); }
public ExpandState(ExpandState cc) { this.expandedNodes = new HashSet<string>(cc.expandedNodes); }
public ExpandState(ExpandState cc) { this.expandedNodes = new HashSet <string>(cc.expandedNodes); }