[Solved] C# -> RaiseEvent in VB.Net [closed]

As a matter of fact you’re not trying to raise an event, but subscribe to one. The IntelliSense error that you get when converting that code to VB.NET is unfortunately a bit misleading. In terms of events, C#’s += operator is equal to Delegate.Combine() which adds another delegate to an event’s subscribers list (list of … Read more