Any One Help Me
I have array Variable And It contains string and number both and now i want to store all array value is another variable which is string variable Not String Array Ok ...
Because I want to print That Sting variable At a time not One By One..

Dr.Ajay KashyapPosted Feb 11, 2017, 11:00 AM
Rafnas T PPosted Feb 11, 2017, 10:25 AM
list.Add("One");
list.Add("Two");
list.Add("Three");
list.Add(5);
foreach (var item in list)
{
if(StrList != "")
{
StrList = StrList + "," + item.ToString();
}
else
{
StrList = item.ToString();
}
}
Amit GuptaPosted Feb 11, 2017, 9:54 AM
Dr.Ajay KashyapPosted Feb 11, 2017, 9:23 AM
Chandan Rajbhar sir i dont understand what to do
Chandan RajbharPosted Feb 11, 2017, 7:33 AM
Chandan RajbharPosted Feb 11, 2017, 7:32 AM