Microsoft.VisualStudio.Language.Spellchecker.SpellingDictionaryService.RaiseSpellingChangedEvent C# (CSharp) 메소드

RaiseSpellingChangedEvent() 개인적인 메소드

private RaiseSpellingChangedEvent ( string word ) : void
word string
리턴 void
        void RaiseSpellingChangedEvent(string word)
        {
            var temp = DictionaryUpdated;
            if (temp != null)
                DictionaryUpdated(this, new SpellingEventArgs(word));
        }