I have the following code:
Console.Clear();
Console.Write("Nome da moto:");
string nomem = Console.ReadLine();
for (int i = 0; i < ListadeVeiculos.Count; i++)
{
if (nomem == ListadeVeiculos[i].Nomemoto)
Console.Write("Preço R$:" +ListadeVeiculos[i].Preco.ToString("0.00"));
else Console.Write("Moto não cadastrada!");
}
Console.ReadKey();
Is there any way to stop when you find the element in the List?
In my code if you insert 2 elements in the list it shows the message of if
and else
.