问题描述
我建立一次发言识别应用程序中使用.NET Framework中可用的类。我的客户希望使用单声道架构在Linux中运行该应用程序。
I am building one speech recognition app using classes available in .net framework. My client wants to run this application in Linux using mono framework.
我试图寻找这个特殊的命名空间及其相关类是否可用,并在单框架内工作过,但没有找到100%正确的答案。
I tried to search whether this particular namespace and its related classes are available and working in mono framework too but couldn't find 100% correct answer.
所以,我在我的脑海两个问题:
So I have two questions in my mind :
-
这是否
System.Speech.Recognition
命名空间是单声道可用?
Whether this
System.Speech.Recognition
namespace is available in mono?
如何检查是否特定的命名空间/特征/类present在.NET中可在单?
How to check if particular namespace/feature/class present in .net is available in mono?
在此先感谢
推荐答案
根据您的单声道版本,请参阅此链接什么是可用的单声道相比,.NET框架:<一href="http://go-mono.com/status/status.aspx?reference=4.0&profile=4.5&assembly=System.Speech" rel="nofollow">http://go-mono.com/status/status.aspx?reference=4.0&profile=4.5&assembly=System.Speech
Depending on your version of mono, see this link for what's available in Mono compared to the .NET framework: http://go-mono.com/status/status.aspx?reference=4.0&profile=4.5&assembly=System.Speech
所以,是的,似乎有在单框架System.Speech.Recognition命名空间中可用,它实际上似乎完成。我从未想过使用它。
So, yes, there seems to be a System.Speech.Recognition namespace available in the Mono framework, and it actually seems complete. I've never used it though.
这篇关于IS&QUOT; System.Speech.Recognition&QUOT;命名空间中的单框架可用?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!