0

我最近开始学习 C#,并很快发现在我运行我的项目时没有抛出一个异常。我正在观看的教程提到异常在发布配置中的工作方式与在调试配置中的工作方式不同,所以我认为我必须使用发布配置运行。

我在Microsoft 的网站上找到了一篇文章,说明了如何切换配置,但是我必须在说明中遗漏一些内容,因为我仍然无法弄清楚如何切换设置。

我正在为 C# 使用 Visual Studio Express 2010。有人可以告诉我为什么没有抛出下面的异常以及如何解决它?

这是我正在使用的代码:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;

namespace ReallySimpleLifeCounter
{
    /// <summary>
    /// Interaction logic for MainWindow.xaml
    /// </summary>
    public partial class MainWindow : Window
    {
        public MainWindow()
        {
            InitializeComponent();
        }

        private void Window_Loaded(object sender, RoutedEventArgs e)
        {
            _testLabel.Content = "Working";
            throw new Exception(); //not being thrown
        }
    }
}
4

1 回答 1

0

您可以使用配置管理器设置模式,通常是热键 F5。

确保您从那里选择了“标准”工具栏,您可以选择运行构建 {Debug, Release} 的模式

于 2013-01-22T01:00:13.633 回答