I'm trying to write an application that reads out text in multiple languages - I've got it to speak in English with some very simple code, but I now need to get the same application to speak in French. All I'm doing in code is starting with this
SpeechSynthesizer speaker = new SpeechSynthesizer();
and then
speaker.Speak("Hello world.");
which reads it out in English - I just need it to also do French
It's proving difficult to get example code for this - anyone have any leads?
I've also tried also downloading the Microsoft Speech Platform so I could get Excel or Word to do the same thing, but the platform doesn't install on my system (Office 2016, Windows 10), and googling it doesn't give me any answers