using directive : using « Statement « Visual C++ .NET






using directive

 

#include "stdafx.h"
#using "System.Windows.Forms.dll"

using namespace System::Windows::Forms;

int main()
{
   MessageBox::Show("Hello World!");
}

   
  








Related examples in the same category

1.using dll