Is there a way in VB.NET to replicate C# behavior on code snippets in case of capturing events?
I.E. in C#:
Btn.Click+=
and then double-tab. Creates an handler for btn.click event.
|
Is there a way in VB.NET to replicate C# behavior on code snippets in case of capturing events? I.E. in C#:
and then double-tab. Creates an handler for btn.click event. |
||||
|
|
|
In C# you can only connect events explicitly, using But VB also lets you connect events implicitly using the There are several ways to automatically create event handler code using
EDIT: in VB.Net 2010 you can handle events with statement lambdas. Example:
OK, so maybe you know about implicit event handling and anonymous methods, and you've still decided you really need to wire up explicit local methods from |
||||
|
|
Strangely enough the VB.NET team didn't implement such feature in Visual Studio. |
|||||||||||
|