⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 threadexceptioneventargs.cs.svn-base

📁 这是一个windows mobile程序能够实现窗体运货效果非常不错
💻 SVN-BASE
字号:
using System;

namespace System.Threading
{
    // Summary:
    //     Provides data for the System.Windows.Forms.Application.ThreadException event.
    public class ThreadExceptionEventArgs : EventArgs
    {
        private Exception ex;
        // Summary:
        //     Initializes a new instance of the System.Threading.ThreadExceptionEventArgs
        //     class.
        //
        // Parameters:
        //   t:
        //     The System.Exception that occurred.
        public ThreadExceptionEventArgs(Exception t)
        {
            ex = t;
        }

        // Summary:
        //     Gets the System.Exception that occurred.
        //
        // Returns:
        //     The System.Exception that occurred.
        public Exception Exception
        {
            get
            {
                return ex;
            }
        }
    }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -