首页 > 代码库 > <C++>CLR必须定义入口点
<C++>CLR必须定义入口点
在VS2013中创建CLR空项目;在点击“项目”创建“Windows 窗体”;完成MyForm设计后,按F5运行跳出错误“必须定义入口点”。
解决方案:
在MyForm.cpp中,添加如下代码:
1 using namespace Project1; 2 3 [STAThreadAttribute] 4 int main(array<System::String ^> ^args) 5 { 6 Application::EnableVisualStyles(); 7 Application::SetCompatibleTextRenderingDefault(false); 8 9 Application::Run(gcnew MyForm()); 10 11 return 0; 12 }
那么问题就解决了。
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。