Boo.Lang.Compiler.TypeSystem.InternalClass.GetTypeDepth C# (CSharp) Méthode

GetTypeDepth() public méthode

public GetTypeDepth ( ) : int
Résultat int
        public override int GetTypeDepth()
        {
            if (-1 == _typeDepth)
            {
                _typeDepth = 1+BaseType.GetTypeDepth();
            }
            return _typeDepth;
        }