compile with: /clr #include <vcclr.h> using namespace System; struct CppClass { gcroot<String ^> * str; CppClass() : str(new gcroot<String ^>) {} ~CppClass() { delete str; } }; int main() { CppClass c; *c.str = gcnew String("hello"); Console::WriteLine( *c.str );...