When converting C# to Vb.Net using the [Online Converter](http://codeconverter.sharpdevelop.net/) i found two issues, this is the first and #514 is the second. `MyClass.HappyEvent += Happy_EventHandler;` translates to `MyClass.HappyEvent += Happy_EventHandler` instead of `AddHandler MyClass.HappyEvent, AddressOf Happy_EventHandler`
When converting C# to Vb.Net using the Online Converter i found two issues, this is the first and #514 is the second.
MyClass.HappyEvent += Happy_EventHandler;translates to
MyClass.HappyEvent += Happy_EventHandlerinstead of
AddHandler MyClass.HappyEvent, AddressOf Happy_EventHandler