C
coder316
Hello
I have a dictionary d <int,string[]> and I am trying to get the value
of a specific string[]
I can iliterate over them with:
foreach(string s in d[1])
{
textBox1.AppendText(s + "\r\n");
}
But I just want d[2][s5] //illistrative puposes only
How do i state the index of an array within a dictionary?
Thanks
I have a dictionary d <int,string[]> and I am trying to get the value
of a specific string[]
I can iliterate over them with:
foreach(string s in d[1])
{
textBox1.AppendText(s + "\r\n");
}
But I just want d[2][s5] //illistrative puposes only
How do i state the index of an array within a dictionary?
Thanks