Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我怎样才能捕捉/重定向产生的声音,比如说:
Console.Beep(400, 1000);
到某个字节缓冲区或直接到 wav 文件都可以。
我已经搜索过,但只找到了重定向文本输出的方法,而不是声音。
您将无法重定向哔声。
Console.Beep()如果可以的话,通过调用Windows API Beep() functionwhich 调用声卡硬件来实现。
Console.Beep()
Windows API Beep() function
你有几个选择:
我认为最后一个是你最好的选择。