温馨提示:代码在线浏览功能只能做为源码浏览参考,如果想更进一步了解该代码请下载:BugTrack51aspx汉化改造版V2.1.7
当前文件:
14RFAMJDWSL814/btnet_console.cs[725B,2009-6-12 11:30:42],打开代码结构图
14RFAMJDWSL814/btnet_console.cs[725B,2009-6-12 11:30:42],打开代码结构图1//compile like so: 2
//csc btnet_console.cs POP3Main.cs POP3Client.cs 3
4
using System; 5
using System.Timers; 6
7
namespace btnet { 8
9
public class console { 10
/////////////////////////////////////////////////////////////////////// 11
public static void Main(string[] args) 12
{ 13
14
// check the command line 15
if (args.Length != 1) 16
{ 17
Console.WriteLine( 18
"usage\nbtnet_console.exe [path to Web.config file]"); 19
Console.WriteLine( 20
"example\nbtnet_console.exe Web.config"); 21
22
return; 23
} 24
25
// Get the configuration settings 26
27
bool verbose = true; 28
POP3Main pop3 = new POP3Main(args[0], verbose); 29
30
Console.WriteLine("Hit enter to quit."); 31
Console.Read(); 32
33
} 34
35
} 36
}






}
}