C#将2D数组转换为html表

时间:2014-05-27 21:13:54

标签: c# html .net arrays

我有一个2维字符串数组,我想将其转换为html表。当我运行下面的代码时,由于阵列的长度很长,它需要花费很多时间。

  string data = string.Empty;
        string table = string.Empty;

        #region new code
        data += "<div class=\"tab-content\">";


        table = " <table class=\"table data-table\">";
        table += "<tbody>";
        for (int row = 1; row < Data.GetLength(0); row++)
        {
            table += "<tr>";
            for (int column = 1; column < Data.GetLength(1); column++)
            {
                try
                {
                    table += "<td>" + Data[row, column].ToString() + "</td>";
                }
                catch
                {
                    table += "<td></td>";
                }
            }
            table += "</tr>";
        }
        table += "</tbody>";


        table += "</table>";

2 个答案:

答案 0 :(得分:5)

尝试使用StringBuilder。当你这样做时,你创建了多个字符串实例,因为字符串是不可变的

答案 1 :(得分:0)

根据try { }打击的频率,我会尝试事先确定指数是否合法。当它发生很多时,Try-Catch 非常

[编辑:]等等,它不应该是索引,你正在检索边界。这个Try-Catch是否为空检查替代品?