-1
[code="C#"]
int counter=0;
string filename = "Folio-Mapping-Form-" + myinvestorid.Value +".pdf";
counter++;
for (int i = 0; i <=counter; i++)
{
appendfile +=filename;
htmlToPdfConverter.ConvertHtmlToFile(htmlString, baseUrl,
filePath + filename);
}
在這裏,我有這有許多文件名字符串文件名,但我想要的文件名存儲到array.how我可以存儲文件名到數組怎樣的字符串存儲陣列在C#中網
看看這個.. https://msdn.microsoft.com/zh-cn/library/aa288453(v=vs.71).aspx – Wheels73