2017-06-13 65 views
-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#中網

+0

看看這個.. https://msdn.microsoft.com/zh-cn/library/aa288453(v=vs.71).aspx – Wheels73

回答

1

我不太理解你的問題。你能粘貼更多的代碼嗎?根據我的理解,嘗試使用string []或使用List<string>然後調用ToArray方法。