次の方法で共有


コンパイラ エラー C3624

'type': この型を使用するには、アセンブリ 'assembly' への参照が必要です

コードをコンパイルするために必要なアセンブリ (参照) が指定されていません。アセンブリを #using ディレクティブに渡します。

次の例では C3624 が生成されます:

// C3624.cpp
// compile with: /clr /c
#using <System.Windows.Forms.dll>

// Uncomment the following 2 lines to resolve.
// #using <System.dll>
// #using <System.Drawing.dll>

using namespace System;

public ref class MyForm : public Windows::Forms::Form {};   // C3624