views:

25

answers:

1

What could I use in replace of IsNested since it is not supported in the compact framework?

A: 

Ok, found it using Reflector, looks like its this:

bool is_nested = (array_type.DeclaringType != null);
SwDevMan81