방법: 네이티브 함수에서 참조 클래스 수정
CLR 배열이 있는 참조 클래스를 네이티브 함수에 전달하고 PInvoke 서비스를 사용하여 클래스를 수정할 수 있습니다.
예제
다음 네이티브 라이브러리를 컴파일합니다.
// modify_ref_class_in_native_function.cpp
// compile with: /LD
#include <stdio.h>
#include <windows.h>
struct S {
wchar_t* str;
int intarr[2];
};
extern "C" {
__declspec(dllexport) int bar(S* param) {
printf_s("str: %S\n", param->str);
fflush(stdin);
fflush(stdout);
printf_s("In native: intarr: %d, %d\n",
param->intarr[0], param->intarr[1]);
fflush(stdin);
fflush(stdout);
param->intarr[0]=300;param->intarr[1]=400;
return 0;
}
};
다음 어셈블리를 컴파일합니다.
// modify_ref_class_in_native_function_2.cpp
// compile with: /clr
using namespace System;
using namespace System::Runtime::InteropServices;
[StructLayout(LayoutKind::Sequential, CharSet = CharSet::Unicode)]
ref class S {
public:
[MarshalAsAttribute(UnmanagedType::LPWStr)]
String ^ str;
[MarshalAsAttribute(UnmanagedType::ByValArray,
ArraySubType=UnmanagedType::I4, SizeConst=2)]
array<Int32> ^ intarr;
};
[DllImport("modify_ref_class_in_native_function.dll",
CharSet=CharSet::Unicode)]
int bar([In][Out] S ^ param);
int main() {
S ^ param = gcnew S;
param->str = "Hello";
param->intarr = gcnew array<Int32>(2);
param->intarr[0] = 100;
param->intarr[1] = 200;
bar(param); // Call to native function
Console::WriteLine("In managed: intarr: {0}, {1}",
param->intarr[0], param->intarr[1]);
}
str: Hello
In native: intarr: 100, 200
In managed: intarr: 300, 400