在.net中我建了一个使用 C++ 托管扩展的控制台应用程序
就是产生一个窗体代码如下
// 这是使用应用程序向导生成的 VC++
// 应用程序项目的主项目文件。

#include "stdafx.h"

#using <mscorlib.dll>

using namespace System;

#using"System.dll"
#using"System.Drawing.dll"
#using"System.Windows.Forms.dll"
using namespace System::Windows::Forms;
using namespace System::ComponentModel;
using namespace System::Drawing;//for WinForm
__gc class WinForm:public Form
{public:
WinForm()
{InitForm();
}
void~WinForm()
{Form::Dispose();
}
void InitForm()
{
}
};
void main()
{
    // TODO: 请用您自己的代码替换下面的示例代码。
  //Console::WriteLine(S"Hello World");
    Application::Run (new WinForm());
//    return 0;
}
窗体产生了但同时会产生一个dos窗口
可不可以不产生这个dos窗口