I have a foreach going through my list and I want it to be true if it shows a message saying that this value already exists in the list and DO NOT STORE this value in the list, someone knows how to do ??
foreach (Agendamento agenda in Agendamentos)
{
if (agenda.matricula.Equals(matricula) && agenda.horarioAtendimento.ToString("dd/MM/yyyy").Equals(maisDeUmDia))
{
Console.WriteLine("JA EXISTE UM ATENDIMENTO PARA ESTA DATA");
}
else
{
Console.WriteLine("NÃO EXISTE UM ATENDIMENTO PARA ESTA DATA");
}
}