What is the difference between开发者_运维问答 the following two functions? ref class SomeClass;
I have four threads in a C++/CLI GUI I\'m developing: Collects raw data The GUI itself A background processing thread which takes chunks of raw data and produces useful information
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\'m writing a generics class in C++/CLI (VS2008) to store and manage records of different kinds and I need collections to keep them before flusing them to DB/disk/etc. I was thinking in something lik
What is the equivalent of the following C# code in C++/CLI? public abstract class SomeClass { public abstract Str开发者_StackOverflow社区ing SomeMethod();
I\'m a bit rusty, actually really rusty with my C++.Haven\'t touched it since Freshman year of college so it\'s been a while.
I am a newbie to C++/CLI. What is the equivalent 开发者_JAVA技巧of the following C# code in managed C++/CLI for both the header and source file?
I\'m currently writing a Winamp plug开发者_运维知识库in framework for C# (basically, a C# implementation of the Winamp API/SDK, as well as a barebones plugin template). Because C# libraries can\'t exp
I\'m trying to port some code into .net which has a load of #define\'d values e.g. #define MY_CONSTANT(512)
I am creating a wrapper around a native lib, which comes in both 32 & 64 bit flavors. I have a fairly complex C++/CLR project that includes a number of header files from the native libs. I got it