You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I build a C# application using Exchange Sharp and that is working.
Now I want to build a second program that simply get's the amount I have on Poloniex.
It needs to be a seperate application.
I created a .Net 4.7.2 Console app (tried WinFroms .Net 4.7.2as well, Working application is: WinForms .net 4.7.2).
I used Nuget to add ExchangeSharp (Install-Package DigitalRuby.ExchangeSharp -Version 0.9.2)
I tried 4.9.1 as well, which is the version I used for my Winforms application.
The program terminates/crashes after it calls: var amounts = await api.Result.GetAmountsAsync();
Although it is in a try/catch loop, it doesn't even get to the catch, the program simply terminates.
Am I forgetting something?
What can be the problem.
Most of the code is copied and pasted from the working WinForms application.
I hope someone can help me.
Kind regards,
Clemens Linders
My code is very simple:
using CLL.Utils;
using ExchangeSharp;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
Hi,
I build a C# application using Exchange Sharp and that is working.
Now I want to build a second program that simply get's the amount I have on Poloniex.
It needs to be a seperate application.
I created a .Net 4.7.2 Console app (tried WinFroms .Net 4.7.2as well, Working application is: WinForms .net 4.7.2).
I used Nuget to add ExchangeSharp (Install-Package DigitalRuby.ExchangeSharp -Version 0.9.2)
I tried 4.9.1 as well, which is the version I used for my Winforms application.
The program terminates/crashes after it calls: var amounts = await api.Result.GetAmountsAsync();
Although it is in a try/catch loop, it doesn't even get to the catch, the program simply terminates.
Am I forgetting something?
What can be the problem.
Most of the code is copied and pasted from the working WinForms application.
I hope someone can help me.
Kind regards,
Clemens Linders
My code is very simple:
using CLL.Utils;
using ExchangeSharp;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace GetPoloniexCoinsFromExchange
{
/*
* Add Exchange Sharp to application: Install-Package DigitalRuby.ExchangeSharp -Version 0.9.2
*
*
*
*
*
*/
}
The text was updated successfully, but these errors were encountered: