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(); } }}