2013-02-28 125 views

回答

0

你可以看看here

因此,像

SpeechSynthesizer synth = new SpeechSynthesizer(); 
synth.SetOutputToWaveFile(@"C:\Test\Sample.wav"); 
synth.SpeakAsync("hello world"); 
相關問題