我正在尝试在 C# 中使用 MS TTS 技术。我正在使用 MS Visual Studio 2010 Professional,并且我使用的是 Windows 7 Ultimate 32 位。
以下是我的代码
SpeechSynthesizer s = new SpeechSynthesizer();
s.SelectVoiceByHints(VoiceGender.Male);
s.Speak("what is happening right now?");
当我运行这段代码时,我唯一能听到的是“bla bla bla”。它实际上是产生“bla bla bla”的声音,没有单词。如果我删除第二行,我可以听到默认女声说话。这里有什么问题?