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

GetTypeDepth() публичный Метод

public GetTypeDepth ( ) : int
Результат int
        public override int GetTypeDepth()
        {
            if (-1 == _typeDepth)
            {
                _typeDepth = 1+GetMaxBaseInterfaceDepth();
            }
            return _typeDepth;
        }