Esempio n. 1
0
 public SpeechManager() {
     _speechSynthesis = new SpeechSynthesis();
     _speechRecognition = new SpeechRecognition();
     _speechRecognition.SpeechRecognized += (s, a) => FireSpeechRecognized(a.Sentence);
 }
Esempio n. 2
0
 public SpeechManager()
 {
     _speechSynthesis   = new SpeechSynthesis();
     _speechRecognition = new SpeechRecognition();
     _speechRecognition.SpeechRecognized += (s, a) => FireSpeechRecognized(a.Sentence);
 }