Darc Posted November 8, 2003 Posted November 8, 2003 I made a Sprite class for a game (it doesn't actually have an image, but rather a number corresponding to an image) and I'd like to use C++ to speed it up but how can I use a Win32 .DLL to read a .NET class? Quote
*Experts* Volte Posted November 8, 2003 *Experts* Posted November 8, 2003 Realistically, you can't, with regular C++. However, if you want to use C++.NET you can do it simply be referencing in the project. Otherwise there's not much you can do with it. If you want speed, you might look into using Platform Invoke to call the Windows GDI32 APIs rather than using GDI+ (which is slightly slower). Quote
Recommended Posts