多维数组位置
本文关键字:位置 数组 | 更新日期: 2023-09-27 18:20:23
我正在尝试制作一个程序,从.txt文件中读取输入,并将其放入数组中,然后读取该数组列表中的特定点。
示例:
输入:
99 20 30
28 3
10 31 29
阵列中的特定点:
array[1,1] = 3 <- I know that this is wrong, but this is where i wanna get.
我试着制作一个数组的数组列表,但我不知道如何到达那个位置。
如果您在声明之后,您可以执行以下操作:
string[][] arr = new string[10][];
arr[1] = new string[10];
arr[1][1] = "3";
列表列表是另一个选项,它应该可以很好地工作,因为列表是动态设计的。这是一个示例:
public Form1()
{
InitializeComponent();
List<List<string>> MyList = MakeList(@"C:'InFile.txt");
MessageBox.Show(MyList[1][1]);
}
public List<List<string>> MakeList(string Path)
{
List<List<string>> TempList = new List<List<string>>();
System.IO.StreamReader sr = new System.IO.StreamReader(Path);
while (!sr.EndOfStream)
{
string Temp = sr.ReadLine();
TempList.Add(Temp.Split().ToList<string>());
}
return TempList;
}