Boo.Lang.Compiler.TypeSystem.Reflection.ExternalType.GetTypeDepth C# (CSharp) Метод

GetTypeDepth() статический приватный Метод

static private GetTypeDepth ( Type type ) : int
type System.Type
Результат int
        static int GetTypeDepth(Type type)
        {
            if (type.IsByRef)
            {
                return GetTypeDepth(type.GetElementType());
            }
            if (type.IsInterface)
            {
                return GetInterfaceDepth(type);
            }
            return GetClassDepth(type);
        }

Same methods

ExternalType::GetTypeDepth ( ) : int