⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 btnet_console.cs

📁 Bug管理系统
💻 CS
字号:
//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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -