サーチ…
前書き
System.Speech
アセンブリでは、Microsoftは音声合成を追加しました。これはテキストを音声に変換する機能です。
構文
SpeechSynthesizer speechSynthesizerObject =新しいSpeechSynthesizer();
speechSynthesizerObject.Speak( "Text to Speak");
音声合成の例 - Hello World
using System;
using System.Speech.Synthesis;
using System.Windows;
namespace Stackoverflow.SpeechSynthesisExample
{
public partial class SpeechSynthesisSample : Window
{
public SpeechSynthesisSample()
{
InitializeComponent();
SpeechSynthesizer speechSynthesizer = new SpeechSynthesizer();
speechSynthesizer.Speak("Hello, world!");
}
}
}
Modified text is an extract of the original Stack Overflow Documentation
ライセンスを受けた CC BY-SA 3.0
所属していない Stack Overflow