private void dictaphone(){
GrammarBuilder dictaphoneGB = new GrammarBuilder();
GrammarBuilder dictation = new GrammarBuilder();
dictation.AppendDictation();
dictaphoneGB.Append(new SemanticResultKey("StartDictation", new SemanticResultValue("Start Dictation",true)));
dictaphoneGB.Append(new SemanticResultKey("DictationInput", dictation));
dictaphoneGB.Append(new SemanticResultKey("EndDictation", new SemanticResultValue("End Dictation", false)));
Grammar grammar=new Grammar(dictaphoneGB);
grammar.Enabled=true;
grammar.Name="Dictatphone ";
_recognizer.LoadGrammar(grammar);
}