码迷,mamicode.com
首页 > Windows程序 > 详细

C#学习笔记(1)

时间:2015-03-17 00:27:05      阅读:235      评论:0      收藏:0      [点我收藏+]

标签:

技术分享
技术分享
今天刚刚安装完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!");
        }
    }
}

  

技术分享

C#学习笔记(1)

标签:

原文地址:http://www.cnblogs.com/ljc825/p/4343131.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!