1
0
mirror of https://github.com/JKorf/CryptoExchange.Net.git synced 2026-08-21 13:23:07 +00:00

Updated example, removed global.json

This commit is contained in:
Jkorf
2022-01-03 09:37:50 +01:00
parent 120132c45b
commit 7a195f662c
10 changed files with 57 additions and 72 deletions
+1 -1
View File
@@ -10,7 +10,7 @@
@inject IKucoinClient kucoinClient
<h3>BTC-USD prices:</h3>
@foreach(var price in _prices)
@foreach(var price in _prices.OrderBy(p => p.Key))
{
<div>@price.Key: @price.Value</div>
}