BitcoinLib.Bitcoin.BTCtoDecimal C# (CSharp) Method

BTCtoDecimal() public static method

Convert Btc to decimal format.
public static BTCtoDecimal ( long val ) : string
val long
return string
        public static string BTCtoDecimal(long val)
        {
            double v = val / _btcDivide;
            return v.ToString();
        }