How do you use the .NET speech namespace classes to convert audio in a WAV file to textual form which I can display on the screen or save to file?
I am looking for some
The classes in System.Speech are for text to speech (primarily an acessibility feature).
You are looking for voice recognition. There is the System.Speech.Recognition namespace available since .Net 3.0. It uses the Windows Desktop Speech engine. This might get you started, but I guess there are better engines out there.
Voice recognition is very complicated and hard to do right, there are also some commercial products available.