Ildasm.Disassembler.IsNestedTypeWithNamespace C# (CSharp) 메소드

IsNestedTypeWithNamespace() 정적인 개인적인 메소드

static private IsNestedTypeWithNamespace ( Managed.Reflection.Type type ) : bool
type Managed.Reflection.Type
리턴 bool
        static bool IsNestedTypeWithNamespace(Type type)
        {
            if (!type.IsNested)
            {
                return false;
            }
            if (type.IsConstructedGenericType)
            {
                type = type.GetGenericTypeDefinition();
            }
            return type.__Namespace != null;
        }