using System;using System.Speech.Synthesis;namespace SpeechSynthesizerDemo{ class PRogram { private static void Main(string[] args) { var speechSynthesizer = new SpeechSynthesizer(); speechSynthesizer.SpeakAsync("尹恩惠,1984年10月3日出生于韩国首尔特别市,韩国影视女演员、歌手。1999年以韩国女子歌手组合Baby V.O.X出道。"); Console.ReadKey(); } }}