Visual Studio shortcut for automatically adding delegate methods

In C #, adding event handler methods is very simple. You simply type "object.event + =" and then double-click the tab.

Is there something similar for VB projects?

Note. This is for dynamically created controls or controls that are not declared WithEvents.

+3
source share
1 answer

You can select an object and an event at the top of the encoding window, and VB will automatically create an event handling method and include it in the constructor file. In addition, there is no such feature not available with Visual Studio and Resharper.

# , VB , , - - .

+4

Source: https://habr.com/ru/post/1716691/


All Articles