我有一个表格(在文件中),我按空格将其分成块。
我需要这样的结构:
-----------------------------
|21|22|23|33|3323|
|32|32|
|434433|545454|5454|
------------------------------
它更像是每一行都是它自己的表。我该怎么做?
我试过了List<List<string>> matrix = new List<List<string>>()
;但我似乎找不到使用它的方法。
编辑- 有人可以告诉我这段代码有什么问题吗????Matrix[0][0] 与 matrix [1][0] 相同。似乎同一行一直添加到矩阵中,但我清除了它...
static ArrayList ReadFromFile(string filename)
StreamReader SR;
string S;
string[] S_split;
SR = File.OpenText(filename);
S = SR.ReadLine();
ArrayList myItems = new ArrayList();
List<List<string>> matrix = new List<List<string>>();
List<string> row = new List<string>();
while (S != null)
{
row.Clear();
S_split = S.Split(' ');
for (int i = 1; i < S_split.GetLength(0); i++)
{
row.Add(S_split[i]);
matrix.Add(row);
}
S = SR.ReadLine();
}
Console.WriteLine(matrix[1][1]);
SR.Close();
return myItems;
}