threadexceptioneventargs.cs.svn-base

来自「这是一个windows mobile程序能够实现窗体运货效果非常不错」· SVN-BASE 代码 · 共 36 行

SVN-BASE
36
字号
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 + =
减小字号Ctrl + -
显示快捷键?