www.pudn.com > SampleSimpleWorkflow.zip > Program.cs


using System; 
using System.Collections.Generic; 
using System.Windows.Forms; 
 
namespace WinApp 
{ 
	static class Program 
	{ 
		///  
		/// The main entry point for the application. 
		///  
		[STAThread] 
		static void Main() 
		{ 
			Application.EnableVisualStyles(); 
			 
			// Switch this form to start to run the single run form. 
			//Application.Run(new FormOnce()); 
			 
			Application.Run(new MainForm()); 
		} 
	} 
}