Boo.Lang.Compiler.TypeSystem.InternalClass.GetTypeDepth C# (CSharp) Method

GetTypeDepth() public method

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