C# 语音读取

using System.Speech.Synthesis;//需要引用的命名空间

string str = "呀呀呀 呀呀呀 我是什么什么的小画家";
SpeechSynthesizer synth = new SpeechSynthesizer();
synth.Speak(str);
原文地址:https://www.cnblogs.com/alives/p/13226611.html