错误:不可说的“ dictationgrammar”不能像方法一样使用

时间:2018-07-21 11:20:52

标签: c#

我正在从此处关注语音识别的教程:https://www.youtube.com/watch?v=caYyjxujZuU&feature=youtu.be

我在窗体的button方法中使用了以下代码,但无法编译,并且编译器向我显示以下错误消息。

  

不可发音的“听写语法”不能像方法一样使用

如何解决我的代码以摆脱此错误?

public partial class Form1 : Form
{        
    private static SpeechRecognitionEngine engine;

    private void button1_Click(object sender, EventArgs e)
    {
        engine = new SpeechRecognitionEngine();
        engine.SetInputToDefaultAudioDevice();
        engine.LoadGrammar(new Grammar(DictationGrammar()));
    }
}

0 个答案:

没有答案