2002-06-08 Martin Baulig <martin@gnome.org>
[mono.git] / mcs / class / corlib / System / EventArgs.cs
1 //------------------------------------------------------------------------------
2 // 
3 // System.EventArgs.cs 
4 //
5 // Copyright (C) 2001 Michael Lambert, All Rights Reserved
6 // 
7 // Author:         Michael Lambert, michaellambert@email.com
8 // Created:        Mon 07/16/2001 
9 //
10 //------------------------------------------------------------------------------
11
12 using System;
13
14 namespace System {
15
16         [Serializable]
17         public class EventArgs
18         {
19                 public static readonly EventArgs Empty = new EventArgs();
20         
21                 public EventArgs() { }
22         }
23
24 } // System
25
26