Ramesh Soni
Ramesh Soni

Reputation: 16077

Resources for Development Using DirectX in C#?

Could some one provide me some good resources for development using DirectX in C#?

Upvotes: 2

Views: 706

Answers (3)

Gant
Gant

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

Paul
Paul

Reputation: 3163

Microsoft's XNA uses DirectX, it is designed to make DirectX/Game programming easier for managed developers.

Upvotes: 2

Anton Kolesov
Anton Kolesov

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

Related Questions