方法 : out パラメータを指定する
更新 : 2007 年 11 月
この例では、関数パラメータが out パラメータであることを指定する方法、および C# プログラムからその関数を呼び出す方法を示します。
out パラメータは、Visual C++ 内で OutAttribute を使用して指定されます。
使用例
この例の最初の部分は、out パラメータを使用する関数を含む型を持つ Visual C++DLL です。
// cpp_out_param.cpp
// compile with: /LD /clr:safe
using namespace System;
public value struct TestStruct {
static void Test([Runtime::InteropServices::Out] String^ %s) {
s = "a string";
}
};
これは、前の例で作成された Visual C++ コンポーネントを利用する C# クライアントです。
// cpp_out_param_2.cs
// compile with: /reference:cpp_out_param.dll
using System;
class TestClass {
public static void Main() {
String t;
TestStruct.Test(out t);
System.Console.WriteLine(t);
}
}
a string