如何在c# web中将字符串存储到数组中
Posted
技术标签:
【中文标题】如何在c# web中将字符串存储到数组中【英文标题】:how to store string into array in c# web 【发布时间】:2017-11-15 01:41:49 【问题描述】: [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);
这里我有字符串文件名,它有很多文件名,但我想将文件名存储到数组中。如何将文件名存储到数组中
【问题讨论】:
看看这个..msdn.microsoft.com/en-us/library/aa288453(v=vs.71).aspx 【参考方案1】:我不太明白你的问题。你能再贴一些代码吗?根据我的理解,尝试使用 string[] 或使用List<string>
然后调用 ToArray 方法。
【讨论】:
以上是关于如何在c# web中将字符串存储到数组中的主要内容,如果未能解决你的问题,请参考以下文章