HI,
i am in a deep trouble.
here i have declared a string array..
int arrayCount = Convert.ToInt32(Session["VersionIds"].ToString().Split(',').Length - 1);
string[] versions = new string[arrayCount];
in this array, i wanna check wheather a string is there or not...
if it dosent exists i wanna add that string to the string array......
for that i tried to use
version[arrayCount].Contains(..........);
but this is thowing an exception...... index out of range..
can anyone please tell me how cann i solve this issue...