Reputation: 16077
Could some one provide me some good resources for development using DirectX in C#?
Upvotes: 2
Views: 706
Reputation: 29889
If DirectX is not strictly required, I encourage you to try Ogre3D. It is graphics engine that built on top of DirectX or OpenGL. The library is originally in C++ but the MOgre C# wrapper is working fine. And it is easy to get started.
Upvotes: 1
Reputation: 3163
Microsoft's XNA uses DirectX, it is designed to make DirectX/Game programming easier for managed developers.
Upvotes: 2
Reputation: 7204
There is an old port of DirectX on C# in DirectX SDK from MS.
Also there is an open-source framework called SlimDX: http://code.google.com/p/slimdx/
Upvotes: 2