C#和微软System.Speech.Synthesis库实现语音合成
C#和微软System.Speech.Synthesis库实现语音合成
一、基础语音合成示例using System;
using System.Speech.Synthesis;
class Program
{
static void Main()
{
using (SpeechSynthesizer synth = new SpeechSynthesi

