标签: c# speech
错误:
An unhandled exception of type 'System.FormatException' occurred in System.Speech.dll
附加信息:双引号字符串无效。
图像发生在e.t.c. I had first the double quotes error which got fixed with removing the " ' ", if i comment out the lowest 2 lines (create grammar and loading) its working, but logically not loading it... "name" is a List
答案 0 :(得分:0)
使用name = json.applist.apps.Select(p => p.name.Replace("\"", string.Empty)).ToList();
name = json.applist.apps.Select(p => p.name.Replace("\"", string.Empty)).ToList();