我在Windows窗体应用程序C#中有一个文本“hello world”。当表单打开时,应该通过计算机在语音中问好世界是否容易建议?
我没有任何想法,因此我无法在此处编写代码。
喜欢
label1.text.read();
答案 0 :(得分:2)
// Initialize a new instance of the SpeechSynthesizer.
SpeechSynthesizer synth = new SpeechSynthesizer();
// Configure the audio output.
synth.SetOutputToDefaultAudioDevice();
// Speak a string.
synth.Speak("This example demonstrates a basic use of Speech Synthesizer");