Howdy :D
I have an Array that is full of numeric ID's (some of the ID's are the same).
string strResultTotal = string.Empty;
strResultTotal = Convert.ToString(Session["
titulo"]) + Convert.ToString(Session["
curso"]);
//lbl_Total.Text = strResultTotal.ToString();
string[] ArrayTotal = strResultTotal.Split(',');
How can I compare all those ID's that are inside ArrayTotal so that I can retrieve the duplicate ones ?
Start Free Trial