コード例 #1
0
        public bool Remove(DBConfigEntry entry)
        {
            //Remove the specified configuration entry
            bool bRet = false;

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