Bitnet.Client.BitnetClient.Move C# (CSharp) Method

Move() public method

public Move ( string a_fromAccount, string a_toAccount, float a_amount, int a_minconf = 1, string a_comment = "" ) : bool
a_fromAccount string
a_toAccount string
a_amount float
a_minconf int
a_comment string
return bool
        public bool Move(
            string a_fromAccount,
            string a_toAccount,
            float a_amount,
            int a_minconf = 1,
            string a_comment = ""
            )
        {
            return (bool)InvokeMethod(
            "move",
            a_fromAccount,
            a_toAccount,
            a_amount,
            a_minconf,
            a_comment
              )["result"];
        }