Convert code from VB to C #

I have a problem converting this VB code to C #

Public Event SendNewBid As EventHandler(Of BidEventInfo)

BidEventInfo is the name of the class.

C # code:

Public event SendNewBid ....??????
+5
source share
4 answers
public event EventHandler<BidEventInfo> SendNewBid;

for future conversions you can use this online converter

+9
source
public event EventHandler<BidEventInfo> SendNewBid;
+2
source
public event EventHandler<BidEventInfo> SendNewBid;

You can use online tools.

+1
source

public event EventHandler<BidEventInfo> SendNewBid;

here is a good web utility if you need to convert your VB.Net code to C #

0
source

All Articles