コード例 #1
0
ファイル: Program.cs プロジェクト: pjc0247/KorbitSharp
        static void Main(string[] args)
        {
            Console.WriteLine(Currency.QueryAsync(CurrencyType.Ethereum).Result);

            var orderbook = Orderbook.QueryOrderbookAsync(CurrencyType.Ethereum).Result;

            Console.WriteLine(orderbook.asks[0].amount);
        }