Tagged Questions

3
votes
5answers
183 views

Does C# have a Handles keyword?

Protected Sub Menu1_MenuItemClick(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.MenuEventArgs) Handles Menu1.MenuItemClick End Sub In VB.net, we have the Handles keyword, I'm ...
3
votes
2answers
155 views

VB [(Function) handles …] equivalent in Delphi

Say we had something like Private Sub ClickObject(ByVal sender As System.Object, ByVal e as System.Eventargs) Handles Object1.click, Object2.click, Object3.click Which takes the event after the ...
3
votes
1answer
1k views

Migrating Handles from VB.NET to C#

I'm migrating some code from VB.NET to C# (3.5). I find structurs like: Public Event DataLoaded(ByVal sender As Object, ByVal e As EventArgs) Protected Sub Mag_Button_Load_Click(ByVal sender As ...
2
votes
3answers
237 views

Help converting a VB.NET “Handles” statement to C#

I need help converting a VB.NET handles statement to C#. This is the VB Private Sub ReceiveMessage(ByVal rr As RemoteRequest) Handles AppServer.ReceiveRequest 'Some code in here End Sub
1
vote
2answers
474 views

AddHandler vs. Handles - what is the difference?

Understood that Handles is only a way to add in constructor the AddHandler, but in general these two are equivalent. True?