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

Exists() public method

Checks if an abbreviation already exists in the list
public Exists ( String abbreviation ) : bool
abbreviation String the mnemonic
return bool
        public bool Exists(String abbreviation)
        {
            return _abbreviationList.ContainsKey(abbreviation.ToUpper());
        }