| 1234567891011121314151617181920212223242526 |
- //
- // System.Threading.ThreadExceptionEventArgs.cs
- //
- // Author:
- // Dick Porter ([email protected])
- //
- // (C) Ximian, Inc. http://www.ximian.com
- //
- namespace System.Threading
- {
- public class ThreadExceptionEventArgs : EventArgs
- {
- public ThreadExceptionEventArgs(Exception t) {
- // blah
- }
- public Exception Exception {
- get {
- return new Exception();
- }
- }
-
- }
- }
|