Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/System.Private.CoreLib/shared/System/UnhandledExceptionEventArgs.cs')
-rw-r--r--src/System.Private.CoreLib/shared/System/UnhandledExceptionEventArgs.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/System.Private.CoreLib/shared/System/UnhandledExceptionEventArgs.cs b/src/System.Private.CoreLib/shared/System/UnhandledExceptionEventArgs.cs
index 5cde57216..c214afdc7 100644
--- a/src/System.Private.CoreLib/shared/System/UnhandledExceptionEventArgs.cs
+++ b/src/System.Private.CoreLib/shared/System/UnhandledExceptionEventArgs.cs
@@ -6,16 +6,16 @@ namespace System
{
public class UnhandledExceptionEventArgs : EventArgs
{
- private Object _exception;
+ private object _exception;
private bool _isTerminating;
- public UnhandledExceptionEventArgs(Object exception, bool isTerminating)
+ public UnhandledExceptionEventArgs(object exception, bool isTerminating)
{
_exception = exception;
_isTerminating = isTerminating;
}
- public Object ExceptionObject
+ public object ExceptionObject
{
get { return _exception; }
}