Hello World! - Again

Hello World! - Again
Frank Lin May 18, 2016 Learning 0 Comment 555 words.

没想到学一门语言都跳票多次,真是惭愧惭愧!这次是真的下定决心好好学习一下 C# 了,我就不信我坚持不下去。

这个进度我就不敢保证了,毕竟平时要忙实验,尽量抽空学吧。这里也做下学习笔记,督促督促自己。

这次参考书籍是 Microsoft Visual C# 2013,同时参考 Microsoft’s DEV204x 课程,就由这里起步吧。

虽说 Hello World! 见了不知多少次了,但是这么具有标志性,我也来段纪念纪念。

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

namespace TestHello
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine("Hello World!");
            Console.WriteLine("Just do it, Frank!");
            Console.ReadKey();
        }
    }
}

C# 1

Share this post:

Comments