ACAT.Lib.Core.AbbreviationsManagement.Abbreviations.Remove C# (CSharp) Method

Remove() public method

Removes an abbreviation from the list
public Remove ( String abbreviation ) : bool
abbreviation String mnemonic of abbr to remove
return bool
        public bool Remove(String abbreviation)
        {
            bool retVal = true;
            try
            {
                if (Exists(abbreviation))
                {
                    _abbreviationList.Remove(abbreviation);
                }
            }
            catch
            {
                retVal = false;
            }

            return retVal;
        }