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# ?
You can use the SpeechRecognizer class in System.Speech.
If you handle the SpeechRecognized event the text is in
e.Result.Text
.