C#学习笔记(1)

今天刚刚安装完VS2013,费了好长时间,现在暂时先用一下win7吧,将来编写跨平台的程序的时候还是要换成Win8.1啊。。。
稍微写了一个hello world
感觉和之前写的Java整体的区别不大,可以像C++那样输出到操作台,也可以做出UI界面,感觉挺方便的
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

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

 

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

namespace ConsoleApplication1
{
    class Program
    {
        static void Main(string[] args)
        {
            System.Windows.Forms.MessageBox.Show("hello world!");
        }
    }
}

  

posted on 2015-03-16 22:29  ljc825  阅读(107)  评论(1编辑  收藏  举报

导航