// 이 샘플 코드는 사용자 사전을 기본 언어에 할당합니다FREngine.IEngine engine;string dictionaryFileName = "D:\\Sample.amd";FREngine.IBaseLanguage baseLanguage;// 기본 언어의 사전 설명 컬렉션을 가져온 다음 모든 항목을 제거합니다IDictionaryDescriptions dictionaryDescriptions = baseLanguage.DictionaryDescriptions;dictionaryDescriptions.DeleteAll();// 사용자 사전 설명을 생성하여 컬렉션에 추가합니다IDictionaryDescription dictionaryDescription = dictionaryDescriptions.AddNew( DictionaryTypeEnum.DT_UserDictionary );IUserDictionaryDescription userDictionaryDescription = dictionaryDescription.GetAsUserDictionaryDescription();userDictionaryDescription.FileName = dictionaryFileName;
이 객체는 Linux 및 Windows용 다음 코드 샘플에서 사용됩니다: CustomLanguage.