btnet_console.cs

来自「Bug管理系统」· CS 代码 · 共 36 行

CS
36
字号
//compile like so: 
//csc btnet_console.cs POP3Main.cs POP3Client.cs

using System;
using System.Timers;

namespace btnet {

	public class console {
		///////////////////////////////////////////////////////////////////////
		public static void Main(string[] args)
		{

			// check the command line
			if (args.Length != 1)
			{
				Console.WriteLine(
					"usage\nbtnet_console.exe [path to Web.config file]");
				Console.WriteLine(
					"example\nbtnet_console.exe Web.config");

				return;
			}

			// Get the configuration settings

			bool verbose = true;
			POP3Main pop3 = new POP3Main(args[0], verbose);
			
			Console.WriteLine("Hit enter to quit.");
			Console.Read();

		}

	}
}

⌨️ 快捷键说明

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