我有一个播放 wav 文件的简单 c# 控制台应用程序。我想在我的应用程序中将 C# 中的声卡设置更改为 24 位/48Khz。我如何以编程方式做到这一点?
static void Main(string[] args)
{
SoundPlayer simpleSound = new SoundPlayer(MyProg.Properties.Resources.BOOTLOAD48000);
simpleSound.Play();
}