I know that the C++/CLI code
void foo(Bar^% x);
transforms into
Void foo(ref Bar x);
What is the C++/CLI cod
You can use the OutAttribute:
using namespace System::Runtime::InteropServices; void foo([Out] Bar^% x);