Given the following code,

    Choices choices = new Choices();
    choices.Add(new GrammarBuilder(new SemanticResultValue("product", "<product/>")));
 
    GrammarBuilder builder = new GrammarBuilder();
    builder.Append(new SemanticResultKey("options", choices.ToGrammarBuilder()));

    Grammar grammar = new Grammar(builder) { Name = Constants.GrammarNameLanguage};
    grammar.Priority = priority;
    
    _recognition.LoadGrammar(grammar);


How can I add additional words to the loaded grammar? I know this can be achieved both in native code and using the SpeechLib interop, but I prefer to use the managed library