推出启动调试后,VS 2013停止工作

时间:2014-01-26 11:20:07

标签: c# visual-studio

我已经在C#开始了一个新项目,为此我决定“破坏”我的自我并从2010年升级到VS 2013。 我刚刚从应用程序开始使用各种简单的

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

namespace WindowsFormsApplication2
{
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());
    }
}
}

这是表格代码,再次基本不同。

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace WindowsFormsApplication2
{
public partial class Form1 : Form
{
    public Form1()
    {
        InitializeComponent();
        //RndColor();

    }
    public void RndColor()
    {
        Random randomGen = new Random();
        KnownColor[] names = (KnownColor[])Enum.GetValues(typeof(KnownColor));
        KnownColor randomColorName = names[randomGen.Next(names.Length)];
        Color randomColor = Color.FromKnownColor(randomColorName);
        TestingBut.BackColor = randomColor;


    }

    private void TestingBut_Click(object sender, EventArgs e)
    {
        //Task NewTask = new Task()
        //Control Ctrl = new (Control(sender));
        RndColor();
        if (TestingChk.Checked)
        {
            ScrnMain.AppendText("Test Me");


        }
    }
}
}
推出构建后,现在问题出现了 我推动开始并得到这个问题:打开多个Froms并且VS粉碎

坠机图片:

enter image description here

请帮帮我!我用谷歌搜索了它的垃圾,什么都找不到。提前谢谢!

P.S לאמגיב==没有用希伯来语回复

1 个答案:

答案 0 :(得分:1)

问题是来自不同版本的多个视觉安装(2008年,2012年......) 刚抹掉它们,现在一切运转良好