नोट
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप साइन इन करने या निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
'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