Hi experts,
I have string ="11/111/112/113/114/115/"
I need convert it into ArrayList() by using C#
ArrayList displayList = new ArrayList();
displayList[0] = 11;
displayList[1] = 111;
displayList[2] = 112;
displayList[3] = 113;
displayList[4] = 114;
displayList[5] = 115;
Thanks.
Start Free Trial