天天看點

開發環境

開發環境

開發環境

一 開發環境

Visual Studio 2019 Community

開發環境

二 第一個程式

開發環境
開發環境
開發環境
開發環境
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace CSharp基礎文法
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine("hi major!");
        }
    }
}

           
開發環境
開發環境

三 認識CS項目

Solution解決方案
   Project 項目
      bin輸出程式(exe)
      obj 中間檔案
      *.cs源碼檔案
注:一個解決方案下是可以添加多個項目的
           
生成(編譯):F7
調試: F5
運作:CTRL+F5
           

繼續閱讀