3
votes
2answers
1k views
How to declare lambda event handlers in VB.Net ?
I believe the following VB.Net code is the equivalent of the proceeding C# code; however the VB.Net test fails - the event handling Lambda is never called.
What is going on?
VB.Net …
5
votes
How to declare lambda event handlers in VB.Net ?
The difference is that in VB.Net a lambda expression must return a value i.e. they must be functions not subs. The lambda expression eventRaised = true is being interpreted as a boole …
