[Mono-list] Fw: [Mono-patches] mcs/tools GenerateDelegate.cs ChangeLog

Gaurav Vaish gvaish@iitk.ac.in
Tue, 5 Mar 2002 10:47:34 +0530


----- Original Message -----
From: "Gaurav Vaish" <gvaish@mono-cvs.ximian.com>
To: <mono-patches@ximian.com>
Sent: Tuesday, March 05, 2002 06:37
Subject: [Mono-patches] mcs/tools GenerateDelegate.cs,NONE,1.1
ChangeLog,1.23,1.24 makefile,1.26,1.27


: +2002-03-05  Gaurav Vaish <gvaish@iitk.ac.in>
: +
: + * GenerateDelegate.cs: Generates delegates (EventHandler) as
: +   specified. The output is quite simple, a delegate that has
: +   the prototype as -->
: +   public delegate void <given-name>EventHandler(object sender,
: +      <given-name>EventArgs e)
: +

Hello,
    I hope, you will find this small tool quite useful. I used it to generate
all the delegates, quite simple to use.

    Included below is a sample output generated by the tool.


Cheers,
Gaurav Vaish
http://home.iitk.ac.in/student/gvaish
http://calendar.yahoo.com/mastergaurav
---------------------------------

/**
 * Namespace: System.Web.UI.Security
 *
 * Author: Gaurav Vaish
 * Maintainer: gvaish@iitk.ac.in
 * Contact:  <my_scripts2001@yahoo.com>, <gvaish@iitk.ac.in>
 * Implementation: yes
 * Status: 100%
 *
 * (C) Gaurav Vaish (2001)
 */

namespace System.Web.UI.Security
{
 public delegate void DefaultAuthenticationEventHandler(object sender,
DefaultAuthenticationEventArgs e);
}