Boo.Lang.Compiler.TypeSystem.InternalClass.GetTypeDepth C# (CSharp) 메소드

GetTypeDepth() 공개 메소드

public GetTypeDepth ( ) : int
리턴 int
        public override int GetTypeDepth()
        {
            if (-1 == _typeDepth)
            {
                _typeDepth = 1+BaseType.GetTypeDepth();
            }
            return _typeDepth;
        }