📄 threadexceptioneventargs.cs.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 + -