.NET Frameworkで使用 テキストを読み上げる
// 参照の追加 System.Speech
// using System.Speech.Synthesis;
SpeechSynthesizer synth = new SpeechSynthesizer();
synth.SetOutputToDefaultAudioDevice();
synth.Speak("ここが東京です");
Sample code collection
.NET Frameworkで使用 テキストを読み上げる
// 参照の追加 System.Speech
// using System.Speech.Synthesis;
SpeechSynthesizer synth = new SpeechSynthesizer();
synth.SetOutputToDefaultAudioDevice();
synth.Speak("ここが東京です");