anonymous methods in c++/CLI

Tech-Archive recommends: Speed Up your PC by fixing your registry



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 ?
.


Quantcast