class1.cs

来自「Professional C# 2nd Edition」· CS 代码 · 共 26 行

CS
26
字号
using System;

namespace BasicConsoleApp
{
	/// <summary>
	/// Summary description for Class1.
	/// </summary>
	class Class1
	{
		/// <summary>
		/// The main entry point for the application.
		/// </summary>
		[STAThread]
		static void Main(string[] args)
		{
			#region Boring stuff in the main routine
			//
			// TODO: Add code to start application here
			//
			Console.WriteLine("Hello from all the editors at Wrox Press");
			Console.ReadLine();
			#endregion
		}
	}
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?