[Mono-list] The future of C#

Miguel de Icaza miguel@ximian.com
08 Nov 2002 22:43:57 -0500


Hey guys,

   Very interesting site with technical details about the future of C#:

	http://www.gotdotnet.com/team/csharp/learn/Future/

   Michael, you will particularly like the bits about anonymous methods,
so now instead of having to do things like:

	{
		button.Clicked += new ButtonEventHandler (MyHandler);
	}

	void MyHandler (object sender, ButtonEventArgs e)
	{
		printf ("hello");
	}

   You can do:

	{
		button.Clicked += new ButtonEventHandler (sender, e){
			printf ("hello");
		}
	}

Miguel