为啥我的VS运行的Helloworld窗口还是闪一下就关了

来源:1-6 第一个C#程序---HelloWorld

我的好奇

2017-10-11 21:06

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;


namespace Myapp1
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine();
        }
    }
}


写回答 关注

1回答

  • 十方YY
    2017-10-11 21:28:27

    那个是调试程序,你可以用Ctrl+F5直接运行

C#开发轻松入门

本门课程是C#语言的入门教程,将带你轻松入门.NET开发

254118 学习 · 1459 问题

查看课程

相似问题