次の方法で共有


方法: 値型への参照をネイティブ型で保持する

ボックス化された型で gcroot を使用して、値型への参照をネイティブ型で保持します。

// 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

関連項目

C++ Interop (暗黙の PInvoke) の使用