On 12.01.2016 17:55, ParticlePeter wrote:
When I pass a parameter to otherFunc I use this syntax for an anonymous function parameter:otherFunc( void function( ref int p1, float p2, ubyte p3 ) { myCode; } );
You don't. That's not valid code. You can be using this: otherFunc( function void ( ref int p1, float p2, ubyte p3 ) { myCode; } ); Note the different position of the `function` keyword.