axWindowsMediaPlayer1.settings.setMode("", true);
axWindowsMediaPlayer1.URL = "skcg.mp3";
//等待時間大概2秒
//異步,主程序不會卡住
//生成語音網址 https://developer.baidu.com/vcast
using System.Speech.Synthesis;
SpeechSynthesizer synth = new SpeechSynthesizer();
synth.Speak("刷卡成功!");
//等待時間大概1.1秒
//同步,主程序會卡住
