Meu código não copila. E acredito que seja problema na conversão.
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace CaixaEletronico3
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void textoTitular_TextChanged(object sender, EventArgs e)
{
Conta conta = new Conta();
conta.Deposito(250.0);
conta.numero = 1;
conta.titular = new Cliente("Douglas");
textoTitular.Text = conta.titular.Nome;
textoSaldo.Text = Convert.ToString(Conta.Saldo);
textoNumero.Text = Convert.ToString(Conta.numero);
}
private void textoSaldo_TextChanged(object sender, EventArgs e)
{
}
private void textoNumero_TextChanged(object sender, EventArgs e)
{
}
}
}