0
Answer

How to Install my voice to Speech Synthesizer? in C# Speech

Sarita Lad

Sarita Lad

10y
1.7k
1
Currently I am using Following code for speak Function
System.Speech.Synthesis.SpeechSynthesizer synth = new System.Speech.Synthesis.SpeechSynthesizer();
            synth.Speak(textBox1 .Text);
            synth.Dispose();
But it speaks in default voice of anna (Microsoft)
I want to use my voice to speak a text?
How I can change the installed voice?