c#判断当前电脑是否安装了声卡,非常简单,只需要判断获取声卡的数量即可.
核心代码如下:
[DllImport("winmm.dll", EntryPoint = "waveOutGetNumDevs")] public static extern int waveOutGetNumDevs();
实现效果如下: