非常简单的语音朗读功能

在System.Speech.Synthesis命名空间下有一个SpeechSynthesizer类,它可以指定的文本内容进行语音朗读,

SpeechSynthesizer sp = new SpeechSynthesizer();  

sp.SpeakAsync(txtToRead.Text); 

原文地址:https://www.cnblogs.com/lizhenlin/p/7692851.html