heisetoufa 发表于 2013-1-27 05:12:53

第一个C#类,.cs文件的Hello World!

using System;namespace Wrox.ProCSharp.Basics{ class MyFirstCSharpClass {static void Main(){   Console.WriteLine('Hello World!');   Console.WriteLine('This isn't at all like Java!');//输出在控制台上的字   Console.ReadLine();//可以使编译后的窗口停留,而不是一闪就没   return;} }} 
 
 
黑色头发  http://heisetoufa.iteye.com
页: [1]
查看完整版本: 第一个C#类,.cs文件的Hello World!