Search code examples
c#compact-frameworkequivalent

What is the IsNested equivalent compact framework?


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


Solution

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

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