日期:2014-05-18 浏览次数:20990 次
/// <summary>
        /// 应用程序的主入口点。
        /// </summary>
        [STAThread]
        static void Main(String[] args)
        {
            if (args.Length > 0)
            {
                MessageBox.Show(args[0]);
            }
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);
            Application.Run(new Form1());
        }
------解决方案--------------------
http://www.codeproject.com/Articles/43675/C-FileAssociation-Class