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


using System; 
using System.Collections.Generic; 
using System.Windows.Forms; 
 
namespace InputMethodReader 
{ 
    static class Program 
    { 
        ///  
        /// 争渡(QQ258190355) 
        /// 20080529 
        ///  
        
        ///  
        /// 应用程序的主入口点。 
        ///  
        [STAThread] 
        static void Main() 
        { 
            Application.EnableVisualStyles(); 
            Application.SetCompatibleTextRenderingDefault(false); 
            Application.Run(new MainForm()); 
        } 
    } 
}