컴파일러 오류 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