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
};
}
C#?
delegate void MyDelegate();
private void Function()
{
MyDelegate foo = delegate() {
//do something
};
}