1

I created a COM C++ and register it in the Windows system.

Now, If I'm creatine a C++ application and would like to load it and call the function objects, I'm using the CoCreateInstance function.

What should I do instead that if I want to create .NET (C#) application and load the COM C++?

Thanks

4

1 に答える 1

4

Visual Studio を使用している場合:
プロジェクトを右クリックし、[参照の追加] を選択します。次のダイアログで、タブ「COM」を選択するだけです。そこで COM ライブラリを選択すると、Visual Studio が Interop アセンブリを作成し、C# からライブラリの使用を開始できます。

于 2012-07-02T07:43:00.073 に答える