public void Merge(PropList pl) { for (int i = 0; i < pl.Count; i++) { this.Add(pl.GetKey(i), pl.GetByIndex(i)); } }
private void Init() { this.m_slPairs = new SortedList <Keys, KeyPair>(); this.m_aOtherPressed = new List <Keys>(); this._plActionsAndKeys = new PropList(); this.ReceiveEndogineKeys(null); }
private void Init() { this.m_slPairs = new SortedList<Keys, KeyPair>(); this.m_aOtherPressed = new List<Keys>(); this._plActionsAndKeys = new PropList(); this.ReceiveEndogineKeys(null); }
public void Merge(PropList pl) { for (int i = 0; i < pl.Count; i++) this.Add(pl.GetKey(i), pl.GetByIndex(i)); }
public Node(bool bAutoCreateChildIfNotExists) { this._bAutoCreateChildIfNotExists = bAutoCreateChildIfNotExists; this.ChildNodes = new PropList(); }
public Node() { this.ChildNodes = new PropList(); }