C# 텍스트 읽어주는 SpeechSynthesizer Class

간단 사용법입니다

 

SpeechSynthesizer synth = new SpeechSynthesizer();

synth.SetOutputToDefaultAudioDevice();

synth.Speak("안녕하세요");

 

 

'C# Programming' 카테고리의 다른 글

C# 프로그레스바 색 변경하기  (0) 2019.07.19
C# combobox 마우스휠 막기  (0) 2019.07.08
C# datagridview 틀고정하기  (0) 2019.06.13
c# 쓰레드  (0) 2019.05.16
C# mysql 비연결형 데이터 읽기  (0) 2019.05.03