ACAT.Lib.Core.AbbreviationsManagement.Abbreviations.Exists C# (CSharp) Méthode

Exists() public méthode

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