www.pudn.com > UsingFont.rar > Program.cs


using System; 
using System.Collections.Generic; 
using System.Windows.Forms; 
 
namespace UsingFont 
{ 
	static class Program 
	{ 
		///  
		/// The main entry point for the application. 
		///  
		[MTAThread] 
		static void Main() 
		{ 
			Application.Run(new MainForm()); 
		} 
	} 
}