summaryrefslogtreecommitdiff
path: root/src/mscorlib/src/System/EventHandler.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/mscorlib/src/System/EventHandler.cs')
-rw-r--r--src/mscorlib/src/System/EventHandler.cs7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/mscorlib/src/System/EventHandler.cs b/src/mscorlib/src/System/EventHandler.cs
index 517e1f7c26..e6923cf637 100644
--- a/src/mscorlib/src/System/EventHandler.cs
+++ b/src/mscorlib/src/System/EventHandler.cs
@@ -2,10 +2,11 @@
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
-namespace System {
-
+using System;
+
+namespace System
+{
[Serializable]
- [System.Runtime.InteropServices.ComVisible(true)]
public delegate void EventHandler(Object sender, EventArgs e);
[Serializable]