■ SpeechSynthesizer 클래스의 GetInstalledVoices 메소드를 사용해 설치 음성 목록을 구하는 방법을 보여준다.
▶ 실행 명령
1 2 3 4 5 6 7 8 9 10 11 12 13 |
using System; using System.Speech.Synthesis; SpeechSynthesizer speechSynthesizer = new SpeechSynthesizer(); ReadOnlyCollection<InstalledVoice> installVoiceCollection = speechSynthesizer.GetInstalledVoices(); foreach(InstalledVoice installedVoice in installVoiceCollection) { Console.WriteLine(installedVoice.VoiceInfo.Name); } |
※ System.Speech 참조를 설정한다.