So I\'m trying voice recognition for C#, I\'m using System.Speech.Recognition, and, I was searching around on the internet, trying out several pieces of code for some basic spee
I had same problem. I just started VisualStudio in x86 Debug mode and the System.Speech.dll was used for x64. In Release mode (x64) it worked. Perhaps you have same issue with CPU Architecture and System.Speech.dll setup.
Which version of Windows 7 are you running? Which language?
Can you use the built in Windows 7 dictation features? Is the speech recognition control panel app working for you? See http://windows.microsoft.com/en-US/windows7/Setting-speech-options
I thought all Windows 7 versions should come with recognizer preinstalled. However, if you are using an unsupported language, it may not.
From https://stackoverflow.com/a/2998963/90236:
You can use use the APIs to query and determine your installed recongizers Desktop: System.Speech.Recognition.SpeechRecognitionEngine.InstalledRecognizers()
I found that I can also see what recognizers are installed by looking at the registry keys: Desktop recognizers: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Speech\Recognizers\Tokens
If you want to try a very simple program that might help, see https://stackoverflow.com/a/4737003/90236
The Speech Platform Runtime 11 and the Speech Platform SDK 11 do not include Runtime Languages for speech recognition or for speech synthesis (TTS or text-to-speech). You must install them separately. A Runtime Language includes the language model, acoustic model, and other data necessary to provision a speech engine to perform speech recognition or TTS in a particular language. There are separate Runtime Languages for speech recognition or speech synthesis. The version of Runtime Languages that you download (for example, version 11.0) must match the version of the Speech Platform Runtime that you have installed. You can download Runtime Languages using this link.
From http://msdn.microsoft.com/en-us/library/hh362873.aspx.
I think you're using the version that shipped with .NET, but there have been several revisions released out of band since then. Microsoft Speech Services v11 is the current release as of today. If you install the SDK, add a reference, and change your namespace to Microsoft.Speech (instead of System.Speech) you should be updated.