Pessoal, Eu criei o projeto, e TextBox... alterei a propriedade Name para textoTitular Esta com o seguinte erro.:
Error CS0246The type or namespace name 'Conta' could not be found (are you missing a using directive or an assembly reference?
Como resolvo ?
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 Conta
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
Conta c = new Conta();
c.Titular = new Cliente("Breno Rocha");
textoTitular.Text = c.Titular.Nome;
}
}
}