コード例 #1
0
        public bool Add(DBConfigEntry entry)
        {
            //Add a new configuration entry
            bool bRet = false;

            try {
                bRet = entry.Create();
            }
            catch (Exception ex) { throw new ApplicationException("Unexpected error adding configuration entry.", ex); }
            return(bRet);
        }