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());
        }