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

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/class/corlib/System/EventArgs.cs')
-rw-r--r--mcs/class/corlib/System/EventArgs.cs25
1 files changed, 0 insertions, 25 deletions
diff --git a/mcs/class/corlib/System/EventArgs.cs b/mcs/class/corlib/System/EventArgs.cs
deleted file mode 100644
index be0d2be54e9..00000000000
--- a/mcs/class/corlib/System/EventArgs.cs
+++ /dev/null
@@ -1,25 +0,0 @@
-//------------------------------------------------------------------------------
-//
-// System.EventArgs.cs
-//
-// Copyright (C) 2001 Michael Lambert, All Rights Reserved
-//
-// Author: Michael Lambert, michaellambert@email.com
-// Created: Mon 07/16/2001
-//
-//------------------------------------------------------------------------------
-
-using System;
-
-namespace System {
-
- public class EventArgs
- {
- public static readonly EventArgs Empty = new EventArgs();
-
- public EventArgs() { }
- }
-
-} // System
-
-