I have this code:
string[] pa = new string[] { "Maia", "Porto", "Valongo", "Gondomar", "Gaia", "Matosinhos"};
private string[] concelho;
public string[] Concelho
{
get { return concelho; }
set { concelho = value; }
}
I need to validate the string pa to see if user put one of that values on text box. The validation needs to be case sensitive, can help??
Containsmethod of the array.