Closed snrchang closed 6 years ago
Hi, I've just created a new Nuget package with the order book functionality provided by @fritz-net. Do you still need help with this or can you use that?
That does help alot, but still struggling to write that ocketClient.SubscribeToMarketDelta("BTC-ETH", data => { in vb. It weird syntax for converters to convert it seems. Thanks so much sir
I don't program VB.Net myself, but isn't it something like:
socketClient.SubscribeToMarketDelta("BTC-ETH", Function(data as BittrexMarketSummary)
// Do something with data
End Function)
Thanks so much, appreciate it.
Hi just wondering if anyone could convert this to visual basic, im having a hard time with the syntax format.
using(var socketClient = new BittrexSocketClient()) { var subcribtionSuccess = socketClient.SubscribeToMarketDelta("BTC-ETH", data => { // Handle data });
}
Thank you