What is the correct way of casting (in C++/CLI) from a native code enum to a managed code enum which contain the same enum values? Is there any difference with using the C# way of casting like for exa
I\'m writing a managed C++/CLI library wrapper for the MySQL embedded server. The mysql C library requires me to call mysql_thread_init() for every thread that will be using it, and mysql_thread_end()
I need basic information about DirectX. Is it a managed API or Un开发者_运维问答managed? Can someone provide me some link etc. explaining this?DirectX is unmanaged, but there are managed wrappers/bind
I wrote a C# application that uses an unmanaged c++ dll via managed c++ dll. In the unmanaged dll, there\'s a callback that one of its params is std::string&.
I have used the \"Attach to process\" function within VS 2008 many times, but never actually on a remote machi开发者_开发百科ne. Now I have to do it and I already read a bunch about it on the net. Aft