i'm just starting to play around with directx and i've read a few articles on the internet that use xinput to interface with the xbox controller.

but when i try to use it in my c# app, i can't seem to find the correct assembly to reference. from what I understand, it's supposed to be in Microsoft.DirectX.dll (namespace Microsoft.DirectX.XInput) but that doesn't get resolved when i add the reference.

am i missing something? should i maybe try an earlier version of the sdk?

any input would be appreciated.

Thanks :)

link|improve this question
feedback

2 Answers

up vote 2 down vote accepted

There's an excellent 3rd-party wrapper around DirectX for .Net called SlimDX: http://slimdx.mdxinfo.com/wiki/index.php?title=Main_Page

It's very similar to Managed DX. I've been using it for a couple months now with 0 problems.

link|improve this answer
thanks, slimdx seems to do the job perfectly fine and it's a 30meg download as opposed to 450meg :) still gonna play around with XNA but for now slimdx meets my needs perfectly. – Velislav Gebrev Dec 7 '08 at 6:23
Even better, the SlimDX redistributable package is only 8mb, and it includes DirectX as well! – Walt D Dec 7 '08 at 18:08
feedback

It seems odd here. Microsoft doesn't provide managed directx anymore, and I've just check my reference list, there's no Microsoft.DirectX.XInput for managed library. Most like it's only available for C++ and XNA only.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.