gpt4 book ai didi

c# - 如何使用 System.Speech

转载 作者:太空宇宙 更新时间:2023-11-03 23:21:29 26 4
gpt4 key购买 nike

所以我有:

C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework.NETFramework\v4.0\Profile\Client\System.Speech.dll

...我可以添加对 Visual Studio 的引用,但是 using System.Speech 等不会在控制台注册,因此语音合成和识别会不行。

非常感谢您的帮助,谢谢!

最佳答案

您需要添加对System.Speech 程序集的引用,然后您就可以像这样自由使用语音了:

using System;
using System.Speech; // <-- sounds like what you are using, not necessary for this example
using System.Speech.Recognition; // <--- you need this

namespace ConsoleApplication2
{
class Program
{
static void Main(string[] args)
{
using (SpeechRecognizer recognizer = new SpeechRecognizer())
{
// do something
}
}
}
}

添加引用

以防万一,这是我正在使用的引用(通过项目References.Add Reference...):

enter image description here

不需要使用浏览功能。我假设您也没有使用 COM。

告诉我更多

关于c# - 如何使用 System.Speech,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35282092/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com