B 
		
								
				
				
			
		bonk
In c# 2.0 I can do:
myButton.Click += delegate(object sender, EventArgs e)
{
MessageBox.Show(((Button)sender).Text);
}
does c++/CLI allow to do the same thing ?
				
			myButton.Click += delegate(object sender, EventArgs e)
{
MessageBox.Show(((Button)sender).Text);
}
does c++/CLI allow to do the same thing ?