Devices
Sound device management in your hands!
Getting drivers
public static ReadOnlyDictionary<string, string> GetDrivers()Getting devices
public static ReadOnlyDictionary<string, string> GetDevices(string driver, ref string activeDevice)Setting active driver
public static void SetActiveDriver(string driver)Setting active device
public static void SetActiveDevice(string driver, string device)Getting current driver and device
// Non-cached
public static (string driver, string device) GetCurrent()
// Cached
public static (string driver, string device) GetCurrentCached()Last updated