I am wondering if there is a way to save text to speech data to an mp3 or Wav file format to be played back at a later time?
SpeechSynthesizer reader = new Speec
There are multiple options such as saving to an existing stream. If you want to create a new WAV file, you can use the SetOutputToWaveFile method.
reader.SetOutputToWaveFile(@"C:\MyWavFile.wav");