AcManager.Tools.Helpers.DirectInput.PlaceholderInputDevice.Same C# (CSharp) Method

Same() public method

public Same ( IDirectInputDevice other ) : bool
other IDirectInputDevice
return bool
        public bool Same(IDirectInputDevice other) {
            return other != null && (Id == other.Id || DisplayName == other.DisplayName);
        }