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

FindBaseType() private method

private FindBaseType ( ) : IType
return IType
        private IType FindBaseType()
        {
            foreach (TypeReference baseType in _node.BaseTypes)
            {
                IType entity = (IType)baseType.Entity;
                if (null != entity && !entity.IsInterface)
                {
                    return entity;
                }
            }
            return null;
        }