> Hello Colin,
> Thank you for your answer.
[quoted text clipped - 26 lines]
>>
>> Colin =^.^=
Hi Eitan,
If you take a look at my response it may be a bit clearer what is going on.
When you're defining the array, you aren't constructing the List<> objects,
just constructing an array of list objects. Parentheses are not required
for constructing an array, as the construction doesn't take parameters,
only a size of array to create given in the square brackets.
So, that being the case, you'll have to manually construct each List<>
object in your array.

Signature
Tom Spink
University of Edinburgh
Eitan - 25 Jun 2007 19:18 GMT
Tom,
Thank you on both of your answers!
Eitan
> > Hello Colin,
> > Thank you for your answer.
[quoted text clipped - 37 lines]
> So, that being the case, you'll have to manually construct each List<>
> object in your array.