[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中我可以将文件名存储到数组中
答案 0 :(得分:1)
我不太明白你的问题。你可以粘贴更多代码吗?根据我的理解,尝试使用string []或使用List<string>
然后调用ToArray方法。