1

我正在使用 SpeechSynthesizer,我想将其配置为使用语音,因此我不必添加单独的词典。预期的最终结果是,如果我传递了一个专有名词,它不应该读出来,也不应该拼出来。

我当前的代码如下

    public void ReadWord(string word)
    {
        using (SpeechSynthesizer synth = new SpeechSynthesizer())
        {   
            synth.Speak(word);
        }
    }
4

0 回答 0