public void Insert(int pIndex, K pKey, V pValue) { XKeyValuePair <K, V> kvp = new XKeyValuePair <K, V>(pKey, pValue); f_List.Insert(pIndex, kvp); }
public void Add(K pKey, V pValue) { XKeyValuePair <K, V> kvp = new XKeyValuePair <K, V>(pKey, pValue); f_List.Add(kvp); }