C# 语音读取(简易)
时间:2020-07-02 19:54:26
收藏:0
阅读:100
using System.Speech.Synthesis;//需要引用的命名空间 string str = "呀呀呀 呀呀呀 我是什么什么的小画家"; SpeechSynthesizer synth = new SpeechSynthesizer(); synth.Speak(str);
评论(0)