■ DirectSoundOut 클래스의 Devices 속성을 사용해 오디오 출력 장치를 열거하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 10 |
using System; using NAudio.Wave; foreach(DirectSoundDeviceInfo directSoundDeviceInfo in DirectSoundOut.Devices) { Console.WriteLine($"{directSoundDeviceInfo.Guid} {directSoundDeviceInfo.ModuleName} {directSoundDeviceInfo.Description}"); } |