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 …
1
vote
1answer
42 views
Honouring of AttributeUsage on derived attribute types
Given the following, I would not expect the compiler to allow multiple attributes that are derived from the base attribute, given that is set to AllowMultiple=false. In fact it compiles without a …
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 …
