一个在线的免费代码语法加亮工具,可以语法加亮VBScript、VB.NET、CSS、HTML、C#、SQL、XML、JScript等编程语言的语法,非常漂亮,效果如下:
Using directives
#region Using directives

using System;
using System.Collections.Generic;
using System.Text;

#endregion

namespace
Sky.MailMonitor

{
class Program

{
static void Main(string[] args)

{
Pop3 pop3 = new Pop3();
string username="xxxxxx";
string password="xxxxxx";
string hostname="pop3.163.com";
try

{
pop3.Connect(hostname);
pop3.Login(username, password);
pop3.Stat();
pop3.List();
}
catch(Exception e)

{
Console.WriteLine(e.Message);
}
finally

{
pop3.Close();
}
}
}
}

















































