Related questions
What does the caret (‘^’) mean in C++/CLI?
I just came across this code and a few Google searches turn up no explanation of this mysterious (to me) syntax.
Hashtable^ tempHash = gcnew Hashtable(iterators_);
IDictionaryEnumerator^ enumerator = tempHash->GetEnumerator();
What the heck does the caret mean? (The gcnew …
Calling C# code from C++
I need to be able to invoke arbitrary C# functions from C++. http://www.infoq.com/articles/in-process-java-net-integration suggests using ICLRRuntimeHost::ExecuteInDefaultAppDomain() but this only allows me to invoke methods having this format: int method(string arg)
What is the …