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 ....??????
public event EventHandler<BidEventInfo> SendNewBid;
for future conversions you can use this online converter
You can use online tools.
here is a good web utility if you need to convert your VB.Net code to C #