简体   繁体   中英

How to convert this line from C# to VB.net (Windows Phone 7)

Hi I am studying some codes from the web that I need for a future project, but I am having trouble changing this code from C# to VB.net. Can someone help pleasE?

this.btnAdd.Click += btnAdd_Click;

Adding event handlers is done differently in VB.NET:

AddHandler btnAdd.Click, AddressOf btnAdd_Click

Source

AddHandler(btnAdd.Click, AddressOf btnAdd_Click)

Most often, for simplier conversions like that, you can use the web based tool at http://www.developerfusion.com/tools/convert/csharp-to-vb/
Though, it should be seen as a advise or guideline.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM