I would like to use something like this:
Dictionary[] matrix = new Dictionary[2];
But, when I do:
Did you set the array objects to instances of Dictionary?
Dictionary[] matrix = new Dictionary[2]; matrix[0] = new Dictionary(); matrix[1] = new Dictionary(); matrix[0].Add(0, "first str");