I have a class Funcionario
that has attributes: CPF
, Nome
and Salario
.
I have to create an X amount of instances of this class in a List<>
and after that, return to the user the values of this list. With the code I created I did not get the values of the properties of each instance, just the namespace and class.
aumento_funcionario.funcionario
I wonder why. Follow my code.
//Código da classe Program.cs
using System;
using System.Collections.Generic;
using System.Globalization;
namespace aumento_funcionarios
{
class Program
{
static void Main(string[] args)
{
Console.Write("Quantos funcionários serão cadastrados? ");
int qtde_cadastros = int.Parse(Console.ReadLine());
List<funcionario> Lista = new List<funcionario>();
for (int i = 0; i < qtde_cadastros; i++)
{
Console.WriteLine("Dados do " + (i + 1) + "º funcionário: ");
Console.Write("CPF: ");
int cpf = int.Parse(Console.ReadLine());
Console.Write("Nome: ");
string nome = Console.ReadLine();
Console.Write("Salário: ");
double salario = double.Parse(Console.ReadLine());
Lista.Add(new funcionario(cpf, nome, salario));
Console.WriteLine();
}
for (int i = 0; i < Lista.Count; i++)
{
Console.WriteLine(Lista[i]);
}
Console.ReadLine();
}
}
}
//Código classe Funcionarios
using System;
using System.Collections.Generic;
using System.Globalization;
namespace aumento_funcionarios
{
class funcionario
{
public int CPF;
public string Nome;
public double Salario { get; private set; }
public funcionario (int cpf, string nome, double salario)
{
this.CPF = cpf;
this.Nome = nome;
this.Salario = salario;
}
}
}