1. 程式人生 > >C#學習 —— 初碼

C#學習 —— 初碼

arp ons static mmm tty generic namespace world! pro

  emmm,老規矩,第一個程序C#的正確輸出方式:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace helloworld
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine("hello world!");//打印到控制臺
        }
    }
}

  然而上面的代碼就寫了

Console.WriteLine("hello world!");//打印到控制臺

  創建好一個helloworld項目後其他的語句就已經導入進來了。。。

  語法格式就像是C++ 和 Java的混合體一樣。

  

C#學習 —— 初碼