为什么会出错:
'System.Runtime.InteropServices.ExternalException' occurred in System.Drawing.dll
这里:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Windows.Forms;
namespace MacierzeJacobiego
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
}
}
}
答案 0 :(得分:0)
进入DEBUG菜单,选择“Exceptions”,然后从出现的对话框中,在“Thrown”列中选中“Common Language Runtime Exceptions”复选框。单击“确定”,然后再次尝试调试。
执行将在异常发生的地方停止。
干杯