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
};
}
 
Back
Top