BitcoinLib.BRL.Util_BRL.getBtcBRLTicker C# (CSharp) Method

getBtcBRLTicker() public static method

Retorna o ticker da Blockchain com o valor em BRL.
public static getBtcBRLTicker ( string apiCode = null ) : Currency
apiCode string Código da API.
return System.Currency
        public static Currency getBtcBRLTicker(string apiCode = null)
        {
            var _exR = new global::BitcoinLib.BlockchainAPI.ExchangeRates(apiCode);
            return _exR.getBtcTicker(currencySymbolBRL);
        }