Compartir a través de


Cómo: Mantener la referencia a un tipo de valor en un tipo nativo

Use gcroot en el tipo con conversión boxing para contener una referencia a un tipo de valor en un tipo nativo.

Ejemplo

// reference_to_value_in_native.cpp
// compile with: /clr
#using <mscorlib.dll>
#include <vcclr.h>

using namespace System;

public value struct V {
   String ^str;
};

class Native {
public:
   gcroot< V^ > v_handle;
};

int main() {
   Native native;
   V v;
   native.v_handle = v;
   native.v_handle->str = "Hello";
   Console::WriteLine("String in V: {0}", native.v_handle->str);
}
String in V: Hello

Vea también

Usar la interoperabilidad de C++ (PInvoke implícito)