Nóta
Teastaíonn údarú chun rochtain a fháil ar an leathanach seo. Is féidir leat triail a bhaint as shíniú isteach nó eolairí a athrú.
Teastaíonn údarú chun rochtain a fháil ar an leathanach seo. Is féidir leat triail a bhaint as eolairí a athrú.
'type': use of this type requires a reference to assembly 'assembly'
Remarks
An assembly (reference) needed to compile your code was not specified; pass the assembly to the #using directive.
Example
The following example generates 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