0

我拥有两个版本的 Visual Studio Ultimate 2010 和 2012,但我都遇到了问题!

在 Visual Studio 2010 中,一旦我创建了一个新的 C++ 项目(Windows 应用程序)并按下“开始调试”,我就会收到一条错误消息:

无法启动程序 c:\...

系统找不到特定文件。

但是,在 Ultimate 2012 中,一旦我创建了一个新的 C# 项目(Windows 应用程序)并运行它,它就会在一秒钟内消失!

注意:我还没有添加那么多代码!

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

    namespace projecttotest
    {
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void closeToolStripMenuItem_Click(object sender, EventArgs e)
        {
            Close();
        }

        private void aboutToolStripMenuItem1_Click(object sender, EventArgs e)
        {
            MessageBox.Show("This Application is ..");
        }
    }
    }
4

0 回答 0