I'm a beginner in C #, and I'm trying to save the values typed in a toolbox
within the property of a Classe
, but the code does not compile.
Can anyone help me?
Form:
namespace ProgramPrestServico
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
}
private void botaoCadastro_Click_1(object sender, EventArgs e)
{
string nomeDigitado = textoNome.Text;
string telDigitado = textoTel.Text;
string endDigitado = textoEnd.Text;
Cliente cliente = new Cliente(nomeDigitado,telDigitado,endDigitado);
MessageBox.Show("Cadastro de " + Nome + " realizado com sucesso! Confirme os dados. tel: " + Tel + " End: " + End);
}
}
}
Client Class
namespace ProgramPrestServico
public class Cliente
{
public Cliente(string nome, string tel, string end)
{
this.Nome = nome;
this.Tel = tel;
this.End = end;
}
public string Nome { get; set; }
public string Tel { get; set; }
public string End { get; set; }
}
}