在C#中用文本文件创建二维数组

时间:2016-03-06 20:21:39

标签: c# arrays

我有一个以下示例文件

Name#Last#Age#Height
Test#Test2#20#180
Peter#Brown#45#190

我想制作一个二维数组,如果它看起来像这样

{
    {"Name", "Last", "Age", "Height"},
    {"Test", "Test2", "20", "180"},
    {"Peter", "Brown", "45", "190"}
};

任何人都可以帮我找到正确的解决方案吗?

1 个答案:

答案 0 :(得分:0)

var lines = File.ReadAllLines("file.txt");

var arr = new int[lines.Length, 4];

// TODO: loop through the lines and fill the array