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

EventArgs.cs « System « corlib « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c2460152d2ecd092f6cee11dedfd864843eabd84 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
//------------------------------------------------------------------------------
// 
// 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 {

	[Serializable]
	public class EventArgs
	{
		public static readonly EventArgs Empty = new EventArgs();
	
		public EventArgs() { }
	}

} // System