Anonymous Delegates

  • Thread starter Thread starter Brian Richards
  • Start date Start date
B

Brian Richards

Is it possible to define anonymous delgates in C++/CLI the way you can in
C#?

delegate void MyDelegate();

private void Function()
{
MyDelegate foo = delegate() {
//do something
};
}
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top