BitcoinLib.Services.CoinService.SendToAddress C# (CSharp) Method

SendToAddress() public method

public SendToAddress ( string bitcoinAddress, decimal amount, string comment, string commentTo ) : string
bitcoinAddress string
amount decimal
comment string
commentTo string
return string
        public string SendToAddress(string bitcoinAddress, decimal amount, string comment, string commentTo)
        {
            return _rpcConnector.MakeRequest<string>(RpcMethods.sendtoaddress, bitcoinAddress, amount, comment, commentTo);
        }