我开始表单时出现C#错误

时间:2015-07-13 13:17:41

标签: c#

当我尝试启动WindowsFormApplication时,我收到此错误 -

An unhandled exception of type 'System.TypeInitializationException' occurred in mscorlib.dll

Additional information: The type initializer for '<Module>' threw an exception.

here is screen

我正在使用Visual Studio 2013

我的表单 - http://pastebin.com/9tALtuW5

我该如何解决这个问题?

我已经尝试过这些东西 -
我打开了异常设置并检查然后取消选中所有(在另一个线程上读取它有助于类似的问题)

我的Program.cs

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace WindowsFormsApplication4
{
    static class Program
    {
        /// <summary>
        /// The main entry point for the application.
        /// </summary>
        [STAThread]
        static void Main()
        {
            System.Windows.Forms.Application.EnableVisualStyles();
            System.Windows.Forms.Application.SetCompatibleTextRenderingDefault(false);
            System.Windows.Forms.Application.Run(new BlackOpsIICF());
        }
    }
}
顺便说一下英语不是我的第一语言

2 个答案:

答案 0 :(得分:0)

猜猜,因为最近有同样的例外。尝试在以下位置清理您的应用程序设置:

  • C:\ Users \用户名\应用程序数据\漫游\ YourCompanyName ...
  • C:\ Users \用户名\应用程序数据\本地\ YourCompanyName ...

答案 1 :(得分:0)

当C#无法初始化类时,会抛出

System.TypeInitializationException。检查BlackOpsIICF类的静态字段和静态构造函数或其自定义类型的字段。