I want to initialise a multi-dimensional array with spring.net. How to define the array?
I tried this
<object type="string[][][]" id="my_array" name="my_array">
<constructor-arg>
<list>
<value>
["A", "B", "C"],
["a", "b", "c"],
["E", "F", "G"]
</value>
<value>
["X", "Y", "Z"],
["x", "y", "z"],
["U", "V", "W"]
</value>
</list>
</constructor-arg>
</object>
but got a type exception. I also tried it with an System.Collection.ArrayList, but this didn't work either.