C#之helloworld

iamzxf發表於2015-03-09


using System;
namespace CSharp.chapter01
{
	class helloworld
	{
		static void Main()
		{
			Console.WriteLine("hello, world");
		}
	}
}



相關文章