-1
for some reason as soon as I search for a variable in the code it lists the variable only that more than once based on the Count variable,
int x=0;
int count=0;
string[] item = new string[500];
private void btn_Enter_Click(object sender, EventArgs e)
{
if (op == true)//op é um boolean que eu usei pra identificar se ele ira inserir variaveis ou pesquisar por elas
{
int y = 1;
count += 1;
for (x=0;x< y; x++)
{
item[count] = textbox.Text;//aqui ele insere as variaveis em um list box
listBox1.Items.Add(item[count]);
}
}
if (op == false)
{
for (x = 0; x <= count; x++) {
if (textbox.Text == item[count]) {
listBox2.Items.Add(item[count]);//aqui era pra ele pesquisar as variaveis
}
}
}
}
for q um for q only runs 1 time ?
– Rovann Linhalis