我想在英文版 Windows 上的 vb.net 应用程序中使用 microsoft TTS 合成器(或任何可以工作的东西)在运行时切换语言。简而言之,我想做的是:
Dim tts As New SpeechSynthesizer
If Language.IsEnglish Then
tts.SpeakAsync("Yes") ' English translation provided
ElseIf Language.IsFrenchCanadian Then
tts.SpeakAsync("We") ' French translation will be provided
End If
对此的任何帮助表示赞赏。