
Implementing array of array
I am trying to implement a class that derives from
System.Web.Hosting.SimpleWorkerRequest. One of the abstract methods I need
to overide is:
public virtual string[][] GetUnknownRequestHeaders();
I am having a tough time declaring and constructing the return value in the
function implementation. For example, when I try:
String* result [][];
result = new String* [n][] ;
I get this error on both lines:
C2691: 'System::String __gc * __gc[]' : invalid type for __gc array
element