Below is a sample code snippet demonstrating how to retrieve the installed speech recognizers from Windows Phone using C#.
How to get Installed Speech Recognizers from Windows Phone using C#?
var Language = (from m in InstalledSpeechRecognizers.All select m).ToList(); foreach(var item in Language) System.Diagnostics.Debug.WriteLine(item.Language);
Output
en-US
de-DE
zh-TW
fr-FR
it-IT
ja-JP
pl-PL
pt-BR
ru-RU
en-IN
zh-CN
en-GB
es-MX
zh-HK
es-ES
Leave a Reply