共用方式為


HOW TO:指定 out 參數

更新:2007 年 11 月

這個範例顯示如何將函式參數指定為 out 參數,以及如何從 C# 程式呼叫該函式。

在 Visual C++ 中,out 參數是以 OutAttribute 指定。

範例

這個範例的第一個部分是 Visual C++ DLL,它的型別中包含具有 out 參數的函式。

// 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";
   }
};

這是 C# 用戶端,此用戶端使用上一個範例所建立的 Visual 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

請參閱

參考

使用 C++ Interop (隱含 PInvoke)