RosettaCodeData/Task/Speech-synthesis/C-sharp/speech-synthesis.cs
2023-07-01 13:44:08 -04:00

13 lines
219 B
C#

using SpeechLib;
namespace Speaking_Computer
{
public class Program
{
private static void Main()
{
var voice = new SpVoice();
voice.Speak("This is an example of speech synthesis.");
}
}
}