首页
社区
课程
招聘
[旧帖] [求助]由于缺少调试目标“。。。。“Visual Studio无法开始调试。。。 0.00雪花
发表于: 2015-12-24 23:03 2016

[旧帖] [求助]由于缺少调试目标“。。。。“Visual Studio无法开始调试。。。 0.00雪花

2015-12-24 23:03
2016
//A hello world!progran in C#
using System;
namespace helloworld
{
    class hello
    {
        static void main()
    {
        Console.WriteLine("hello world");

            //keep the console window open in debug mode.
            Console.WriteLine("press and key to exit");
            Console.ReadKey();
        }
    }
}
错误        1        程序“d:\C项目\1.c\1.c\obj\Debug\1.c.exe”不包含适合于入口点的静态“Main”方法       

使用VS2010时出现如下问题:由于缺少调试目标”d:\C项目\1.c\1.c\obj\Debug\1.c.exe”,Visual Studio无法开始调试。请生成项目并重试,或者相应地设置OutputPath和AssemblyName属性,使其指向目标程序集的正确位置

在解决方案中,右键,点击 清理,再点击 重新生成之后还是这样。有什么解决办法吗?

[招生]科锐逆向工程师培训(2024年11月15日实地,远程教学同时开班, 第51期)

收藏
免费 0
支持
分享
最新回复 (0)
游客
登录 | 注册 方可回帖
返回
//