C# 的隨手筆記 1 - C# 的 Hello World

單純記錄一下 Hello World

 

 


using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Runtime.InteropServices;
using System.Text;
using System.Threading.Tasks;
// using I2C_Library;

namespace I2C_Hellow_World
{
    class Hellow_World
    {
        static void Main(string[] args)
        {

            Console.WriteLine("Hello, World!");


            Console.Read();
        }

    }
}