C# 如何配置SpeechSynthesizer以使用语音,使其能够读取专有名词(名称)?

C# 如何配置SpeechSynthesizer以使用语音,使其能够读取专有名词(名称)?,c#,text-to-speech,speech-synthesis,phonetics,C#,Text To Speech,Speech Synthesis,Phonetics,我正在使用SpeechSynthesizer,我想将其配置为使用语音,这样就不必添加单独的词汇。预期的最终结果是,若我给它一个专有名词,它就不应该读出来,也不应该拼写出来 我目前的代码如下 public void ReadWord(string word) { using (SpeechSynthesizer synth = new SpeechSynthesizer()) { synth.Speak(word);

我正在使用SpeechSynthesizer,我想将其配置为使用语音,这样就不必添加单独的词汇。预期的最终结果是,若我给它一个专有名词,它就不应该读出来,也不应该拼写出来

我目前的代码如下

    public void ReadWord(string word)
    {
        using (SpeechSynthesizer synth = new SpeechSynthesizer())
        {   
            synth.Speak(word);
        }
    }
试着四处打猎。