How to Create a Simple Text to Speech Program in C#
Submitted by janobe on Wednesday, November 28, 2018 - 19:35.
This time, I will teach you how to create a Text to Speech Application in C#. In this method you will be able to make the machine speak because of .Net Framework that produces the speech libraries. Simply follow the steps below to see how it works.
For more question about this article. You can contact me @
Email – [email protected]
Mobile No. – 09305235027 – TNT
FB Account – https://www.facebook.com/onnaj.soicalap
Or feel free to comment below.
Creating Application
Step 1
Open Microsoft Visual Studio 2015 and create a new windows form application in C#.
Step 2
Do the form just like shown below.
Step 3
Go to solution explorer, right click the “References” and hit add reference.
Step 4
Add the System.Speech
and hit “ok”.

Step 5
Add a namespace below to access Speech library.- using System.Speech.Synthesis;
Step 6
Double click the “Speak” button and do the following codes to make the machine speak when the button is clicked.- private void button1_Click(object sender, EventArgs e)
- {
- string msg;
- msg = "Welcome to sourcecodester.com";
- speaks.Rate = 1;
- speaks.Volume = 100;
- speaks.Speak(msg);
- }
Add new comment
- 163 views