当使用微软SpeechSynthesizer时,有时会发出噼里啪啦的声音......很快......
// Initialize a new instance of the SpeechSynthesizer.
SpeechSynthesizer synth = new SpeechSynthesizer();
// Configure the audio output.
synth.SetOutputToDefaultAudioDevice();
// Speak a string.
synth.Speak("This example demonstrates a basic use of Speech Synthesizer");
我认为它与CPU使用率有关。但它也发生在强大的计算机上。是否有最佳实践或工作方法?