Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
'type': use of this type requires a reference to assembly 'assembly'
An assembly (reference) needed to compile your code was not specified; pass the assembly to the #using directive.
Example
The following sample 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