Пример #1
0
        public void Insert(int pIndex, K pKey, V pValue)
        {
            XKeyValuePair <K, V> kvp = new XKeyValuePair <K, V>(pKey, pValue);

            f_List.Insert(pIndex, kvp);
        }
Пример #2
0
        public void Add(K pKey, V pValue)
        {
            XKeyValuePair <K, V> kvp = new XKeyValuePair <K, V>(pKey, pValue);

            f_List.Add(kvp);
        }