ACAT.Lib.Core.AbbreviationsManagement.Abbreviations.Exists C# (CSharp) Метод

Exists() публичный Метод

Checks if an abbreviation already exists in the list
public Exists ( String abbreviation ) : bool
abbreviation String the mnemonic
Результат bool
        public bool Exists(String abbreviation)
        {
            return _abbreviationList.ContainsKey(abbreviation.ToUpper());
        }