C# 语音开发

using System.Speech; using System.Speech.Recognition;//语音识别 using System.Speech.Synthesis;//语音合成 SpeechSynthesizer synth = new SpeechSynthesizer(); synth.Speak("Hello, world! i love you");为什么只有“you”可以读出来,其余的都是“bula”望大侠指点!
using System.Speech; using System.Speech.Recognition;//语音识别 using System.Speech.Synthesis;//语音合成 SpeechSynthesizer synth = new SpeechSynthesizer(); synth.Speak("Hello, world! i love you");为什么只有“you”可以读出来,其余的都是“bula”望大侠指点!