c#之hello world

前言:公司开始转型java,作为javaer,负责其他同事转型,期间以为工作需要,需要简单学习c#语法,顾有此文,及其后续的一系列文章(c#里头的一些优点,可以为提升java的思想带来帮助)

1. 安装Visual Studio(略,自己是一直next,安装的版本是2012)

2.创建第一个hello world程序

c#之hello world

3.配置环境变量

c#之hello world

 

加入:C:\Windows\Microsoft.NET\Framework\v4.0.30319;

c#之hello world

运行

c#之hello world

 如果想直接在visual Studio中运行命令窗体,而不是一闪而过

可以再最后加上 Console.ReadKey();

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

参考:http://msdn.microsoft.com/zh-cn/library/k1sx6ed2.aspx

 

c#之hello world

上一篇:推荐一个winform 界面交互类库转


下一篇:C#将XML转换成JSON转换XML