G
Guest
I've an ArrayList with the the values shown below:
[0]: "ComputerServices"
[1]: "Documents"
[2]: "BIG Folder"
I want to turn the arraylist into ComputerServices/Documents/BIG Folder/
Here is what i am doing..
for(int i=0; i < arrPath.Count; i++)
{
FilePath +=arrPath.ToString()+"/";
}
The problem i have is i am getting ComputerServices/Documents/BIG
from FilePath variable.. anything after the space is not added.. why?
Many thanks
[0]: "ComputerServices"
[1]: "Documents"
[2]: "BIG Folder"
I want to turn the arraylist into ComputerServices/Documents/BIG Folder/
Here is what i am doing..
for(int i=0; i < arrPath.Count; i++)
{
FilePath +=arrPath.ToString()+"/";
}
The problem i have is i am getting ComputerServices/Documents/BIG
from FilePath variable.. anything after the space is not added.. why?
Many thanks