Beispiel #1
0
        /// <summary>
        /// �����������ýڵ�
        /// </summary>
        /// <param name="hasItems">�ڵ㼯��</param>
        public static void Insert(Hashtable hasItems, SystemType type)
        {
            _oConfigReader = CreateReader(type);

            _oConfigReader.Insert(hasItems);
        }
Beispiel #2
0
        /// <summary>
        /// ����ڵ�
        /// </summary>
        /// <param name="strKey">����ڵ��key</param>
        /// <param name="strValue">����ڵ��value</param>
        public static void Insert(string strKey, string strValue, SystemType type)
        {
            _oConfigReader = CreateReader(type);

            _oConfigReader.Insert(strKey, strValue);
        }