views:

66

answers:

2

I wanna make a text editor but its different other text editors.It will get commands from my voice.

For example ; i will say my name to microphone "Ibrahim AKGUN" .. then this program will get it and write it down like a virtual secretary :)

This is possible in C# ?

+1  A: 

Does this SO question answer your question or point you in the right direction?

http://stackoverflow.com/questions/227140/c-speech-recognition-is-this-what-the-user-said

jasonh
+2  A: 

You can use the SpeechRecognizer class in System.Speech.

If you handle the SpeechRecognized event the text is in e.Result.Text.