示例#1
0
 public static SpeekTTS GetInstance()
 {
     _speekTTS = new SpeekTTS();
     return(_speekTTS);
 }
示例#2
0
        public static void SpeechToPrompt(string strText)
        {
            var tts = SpeekTTS.GetInstance();

            tts.SpeechToPrompt(strText);
        }