How can I get the name of the soundcard and maybe a few infos about it when using C#?
A:
Sadly discontinued but you can still find Managed DirectX which includes ...
using Microsoft.DirectX.DirectSound;
// List all Audio Cards
DevicesCollection devList = new DevicesCollection();
foreach (DeviceInformation dev in devList)
{
this.AddToLog("Found {0}, {1}, {2}", dev.Description, dev.DriverGuid, dev.ModuleName);
}
Hightechrider
2010-04-14 18:01:27
is there no way without directx? maybe via a winapi function call?
Kai
2010-04-14 18:23:21