如何在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&lt;string&gt; 然后调用 ToArray 方法。

【讨论】:

以上是关于如何在c# web中将字符串存储到数组中的主要内容,如果未能解决你的问题,请参考以下文章

在 C# 中将 Base64 字节数组解码为图像

在 C# 中将 2 个本地字符串 [] 添加到单个数组中

如何在c#中将ArrayList转换为字符串数组(字符串[])

如何在 C# 中将字符串转换为 DateTime?

如何在 C# 中将 Web 服务商店调用到列表中 [关闭]

C# 如何将 CSV 转换为数组?