Boo.Lang.Compiler.TypeSystem.InternalGenericParameter.FindBaseType C# (CSharp) Method

FindBaseType() private method

private FindBaseType ( ) : IType
return IType
        private IType FindBaseType()
        {
            foreach (IType type in GetTypeConstraints())
            {
                if (!type.IsInterface)
                {
                    return type;
                }
            }
            return _tss.ObjectType;
        }