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 
link|improve this question

57% accept rate
feedback

3 Answers

up vote 1 down vote accepted

Wherever you initialize your class:

AppServer.ReceiveRequest += ReceiveMessage;
link|improve this answer
or AppServer.ReceiveRequest += and then press TAB if you are in VS ;-) – Paul Kohler Apr 13 '10 at 2:21
feedback
public void SomeMethodOrConstructor()
{
  AppServer.ReceiveRequest += ReceiveMessage;
}

public void ReceiveMessage(RemoteRequest rr)
{
  //handle the event here
}
link|improve this answer
I appreciate the answer, very clean – Jim Beam Apr 13 '10 at 15:25
feedback

Along with the actual adding of the handler the first time mentioned in the other answers, the Handles statement causes VB to generate a property that will automatically remove the handler from the old value and add it to the new value. If the property never changes, this makes no difference, but if you are ever replacing the "AppServer", you will have to remember to update the event handlers.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.