Tenho o seguinte exercicio:
Desenvolva uma rotina que receba um parâmetro inteiro numérico, e retorne um booleano indicando se o valor do parâmetro existe ou não na matriz {2, 5, 6, 8, 9}.
Desenvolvi o código abaixo, onde estou errando? :S
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace Simulado2
{
public partial class frmMatriz : Form
{
public frmMatriz()
{
InitializeComponent();
}
private void btnConferir_Click(object sender, EventArgs e)
{
int valor = Convert.ToInt32(txtNum.Text);
int [] myArray = { 2, 5, 6, 8, 9 };
foreach (int num in myArray)
{
if (valor == num)
{
MessageBox.Show("O valor está na matriz");
}
else
{
MessageBox.Show("O valor não está na matriz");
}
}
}
}
}