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?