C# return speech phonetic without recognize it
I'm trying to make a human like dictionary (db) of Persian speech, so I tried to speak and have c# produce it phonetically, but the problem is I cant find any event to find what I spoke. For example, we have SpeechRecognized event but it fired after recognizing the speech. Here is my code sample: <pre> <code> SpeechRecognizer rec = new SpeechRecognizer(); public Form1(){ InitializeComponent(); rec.SpeechRecognized += rec_SpeechRecognized(rec_SpeechRecognized); // this will fire after recognize rec.SpeechDetected +=new EventHandler(rec_SpeechDetected); // this will fired each time but with no