1

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# ?

İbrahim Akgün
  • 1,527
  • 11
  • 37
  • 63

1 Answers1

2

You can use the SpeechRecognizer class in System.Speech.

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

weiqure
  • 3,247
  • 2
  • 27
  • 31