public bool TransferTo(double amount, BankAccountnew AccountToTransfer)
 {
     if (Withdraw(amount))
     {
         AccountToTransfer.Deposit(amount);
         return(true);
     }
     else
     {
         Console.WriteLine("Transfer not succesful!");
         return(false);
     }
 }