Problem generating proxies with 2-D arrays in CTP 1.5
Code Snippet
// This Does not build!
[DataMember()]
public int[,] test;
If we comment out the '[DataMember()]', the code builds but it won't work with the other services without that 2-D array.
On a related note, initializing the array as private and writing a public accessor (as a DataMember) also does not work:
Code Snippet
// This also doesn't build!
private int[,] t;
[DataMember()]
public int[,] Test
{
get { return t; }
set { t = value; }
}
commenting out the "set" function allows the code to compile, but again, it is still useless.
how can the situation be remedied?

