vJoyInterfaceWrap.vJoy.GetvJoyProductString C# (CSharp) Méthode

GetvJoyProductString() public méthode

public GetvJoyProductString ( ) : string
Résultat string
        public string GetvJoyProductString() { return Marshal.PtrToStringAuto(_GetvJoyProductString()); }
        public string GetvJoyManufacturerString() { return Marshal.PtrToStringAuto(_GetvJoyManufacturerString()); }

Usage Example

Exemple #1
0
        //retrieve driver info
        private string displayJoyDriverInfo()
        {
            String a = joystick.GetvJoyManufacturerString();
            String b = joystick.GetvJoyProductString();
            String c = joystick.GetvJoySerialNumberString();

            return(a + " | " + b + " | " + c);
        }
All Usage Examples Of vJoyInterfaceWrap.vJoy::GetvJoyProductString