Dictating in MS Visual C#?

226 Views Asked by At

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

There are 1 best solutions below

0
On BEST ANSWER

You can use the SpeechRecognizer class in System.Speech.

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