www.pudn.com > InternetÖ©Öë³ÌÐò.zip > TestSpider.cs


using System; 
using System.Windows.Forms; 
 
 
namespace Spider 
{ 
	///  
	/// Summary description for Class1. 
	///  
	class TestSpider 
	{ 
		///  
		/// The main entry point for the application. 
		///  
		[STAThread] 
		static void Main(string[] args) 
		{ 
			Application.Run(new SpiderForm()); 
		} 
	} 
}