Converting c# eventhandler code to vb.net

佐手、 提交于 2019-11-27 09:53:57
AddHandler dacServices.Message, AddressOf dbServices_Message

Most of converters do not work because you don't write new EventHandler in vb.net.

But you can see an example here: http://msdn.microsoft.com/en-us/library/ms743596.aspx?cs-save-lang=1&cs-lang=vb#code-snippet-2

and for regular code conversion I use this converter: http://www.developerfusion.com/tools/convert/csharp-to-vb/

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!