i am using a arraylist "distincArray" and i want to find the current value inside the arraylist . for that i have use the contains methods as below.I am still not able to find the element
if (distincArray.Contains(lblCompID.Text))
{
distincArray.RemoveAt(distincArray.IndexOf(lblCompID.Text));
}
can any one help me out ?