[Mono-list] System.EventArgs ...
Michael Lambert
michaellambert@bellsouth.net
Mon, 16 Jul 2001 15:58:35 -0400
This is a multi-part message in MIME format.
------=_NextPart_000_05E2_01C10E10.2BD24270
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: 7bit
My first mono class. Yeah! Here is my implementation of System.EventArgs. I
ran it through a test compile. It seemed pretty hard to screw up. I'm looking
for feedback and other things a lazy programmer can do. I've got to read
through the specifications. Is anyone doing the enums for System module? I'll
exercise my fingers for that.
Michael Lambert
"Right. That's easy!"
------=_NextPart_000_05E2_01C10E10.2BD24270
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_05E2_01C10E10.2BD24270--