quiero ingresar a una lista

yoelito 0 Reputation points
2023-10-26T01:17:06.73+00:00
 private void rEGISTRARToolStripMenuItem_Click(object sender, EventArgs e)
 {
     EMPLEADOS myEmpleado=new EMPLEADOS();
     myEmpleado.Nombre=txtNombre.Text;
     myEmpleado.Identidad=int.Parse(txtIdentidad.Text);
     myEmpleado.Cargo=txtCargo.Text;
     myEmpleado.SalarioDia = Decimal.Parse(txtSalarioDia.Text);
     myEmpleado.DiasTrabajados= Int32.Parse(txtDiasTrabajados.Text);
     myEmpleado.Contraseña = txtCONTRASEÑA.Text;
     txtDevengado.Text = myEmpleado.CalculardeDengado(myEmpleado.SalarioDia, myEmpleado.DiasTrabajados).ToString();
     Mypilaempleado.Push(myEmpleado);
    
     dgvDatos.DataSource = null;
     dgvDatos.DataSource = Mypilaempleado.ToArray();
     
 }
Not Monitored
Not Monitored
Tag not monitored by Microsoft.
39,627 questions
{count} votes

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.