第一个C# 程序,helloworld 一看就懂

2021/6/10 12:23:17

本文主要是介绍第一个C# 程序,helloworld 一看就懂,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

 

 

using System;  // 使用系统 
// 一个 C# 程序主要包括以下部分:


namespace HelloWord // 命名空间声明(Namespace declaration)
{   // 一个 class. 一个类。
    class Program // class方法, 类似于类的方法,一个类的方法,这里是class类的program方法。 
    {
        static void Main(string[] args) //一个main方法 
        {   // 我的第一个C# 程序 . 这是注释。 
            Console.WriteLine("Hello World!"); // 语句(Statements)& 表达式(Expressions)
        }
    }
// 这个没有成功输出, 重新建立的一个项目,才成功输出的。 

-----------------------------------

 

using System;

namespace helloworld01
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine("Hello World!");
        }
    }
}

记住在.cs文件中写代码就行了,暂时不理解的地方,先略过。后面有时间去看,理解的。

 

 


输出效果

 

   后续是variabel 变量的学习,与操作数据库的快速写出啊  

 



这篇关于第一个C# 程序,helloworld 一看就懂的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程