当我尝试启动WindowsFormApplication时,我收到此错误 -
An unhandled exception of type 'System.TypeInitializationException' occurred in mscorlib.dll
Additional information: The type initializer for '<Module>' threw an exception.
我正在使用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());
}
}
}
顺便说一下英语不是我的第一语言
答案 0 :(得分:0)
猜猜,因为最近有同样的例外。尝试在以下位置清理您的应用程序设置:
答案 1 :(得分:0)
System.TypeInitializationException
。检查BlackOpsIICF
类的静态字段和静态构造函数或其自定义类型的字段。