[Mono-list] RE: System.EventArgs ...

Michael Lambert michaellambert@bellsouth.net
Tue, 17 Jul 2001 11:39:13 -0400


This is a multi-part message in MIME format.

------=_NextPart_000_06C8_01C10EB5.1A096FA0
Content-Type: text/plain;
	charset="iso-8859-1"
Content-Transfer-Encoding: 7bit

Assembly

corlib/System

ChangeLog @ mcs/class/corlib/System

2001-07-16  Michael Lambert <michaellambert@email.com>

	* EventArgs.cs: Add.



> -----Original Message-----
> From: miguel@ximian.com [mailto:miguel@ximian.com]
> Sent: Tuesday, July 17, 2001 12:45 AM
> To: michaellambert@bellsouth.net
> Cc: mono-list@ximian.com
> Subject: Re: System.EventArgs ...
> 
> 
> 
> Ok, I am going to ask contributors to provide a bit more information
> when sending me a class:
> 
> 	Assembly where the class goes.
> 	ChangeLog entry.
> 	Source code.
> 
> I need the Assembly, because sometimes I am reading email without
> having VMware running and not being on the net (just like now), so I
> can not figure out where to put it until later. 
> 
> Michael, could you resend me your code with a ChangeLog entry (just
> check any ChangeLog in the distribution for examples) and the Assembly
> where EventArgs goes?
> 	
> 
------=_NextPart_000_06C8_01C10EB5.1A096FA0
Content-Type: text/plain;
	name="EventArgs.cs"
Content-Transfer-Encoding: quoted-printable
Content-Disposition: attachment;
	filename="EventArgs.cs"

//-----------------------------------------------------------------------=
-------
//=20
// System.EventArgs.cs=20
//
// Copyright (C) 2001 Michael Lambert, All Rights Reserved
//=20
// Author:         Michael Lambert, michaellambert@email.com
// Created:        Mon 07/16/2001=20
//
//-----------------------------------------------------------------------=
-------

using System;

namespace System {

	public class EventArgs
	{
		public static readonly EventArgs Empty =3D new EventArgs();
=09
		public EventArgs() { }
	}

} // System



------=_NextPart_000_06C8_01C10EB5.1A096FA0--