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
_______________________________________________
Mono-list maillist - [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list