0
votes
How do I find the type of the object instance of the caller of the current function?
Walk up the stack checking for base class - derived class relationship.
var type = new StackFrame(1).GetMethod().DeclaringType;
foreach (var frame in new StackTrace( …
0
votes
How do I load a Grammar xml file that uses SAPI 5.3 tags?
You appear to be using c#, and therefore the .NET interface to the speech system. As far as I can tell the .NET interface only explicitly supports the W3C SRGS XML grammar format,
…
1
vote
How to add words to an already loaded grammar using System.Speech and SAPI 5.3
It sounds like you need to use some indirection, via the a grammar rule reference. This can be done with the GrammarBuilder.AppendRuleReference method. It might be easier to test out your grammars …
1
vote
How to add words to an already loaded grammar using System.Speech and SAPI 5.3
An alternative, if you have very large grammars, would be to use the dictation grammar option. There is a standard dictation grammar, but you could also specify your own.
See …
