비주얼 스튜디오의 NUGET 패키지 관리에서 Sharp DX DirectInput 다운로드하여 사용. using System; using SharpDX.DirectInput; namespace EnumDevicesApp { static class Program { /// /// The main entry point for the application. /// //[STAThread] static void Main() { MainForJoystick(); } static void MainForJoystick() { // 기기 검색 // Initialize DirectInput var directInput = new DirectInput(); // Find a Joystick Guid var joystick..