tags:

views:

41

answers:

1

How can I recognize text with SAPI, using C#?

Where can I find sample code?

+1  A: 

Use the System.Speech.Recognition namespace. There's little point in battling the SAPI COM interfaces yourself, the SpeechRecognizer class lets you do anything you can do in SAPI. Point your browser to the MSDN Library topics for that namespace, you'll find plenty of examples.

Hans Passant