■ SpeechSynthesizer 클래스를 사용해 한글 음성을 출력하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 |
using System.Speech.Synthesis; SpeechSynthesizer speechSynthesizer = new SpeechSynthesizer(); speechSynthesizer.SetOutputToDefaultAudioDevice(); speechSynthesizer.Speak("안녕하세요?"); |
※ System.Speech 참조를 설정한다.
※ 한글 음성 출력은 윈도우즈 10에서만 가능하다.