¿Hay una función para verificar si un objeto es un tipo de datos integrado?

Me gustaría ver si un objeto es untipo de datos incorporado Cía#

No quiero comprobar contra todos ellos si es posible.
Es decir, yono hacer quiero hacer esto:

        Object foo = 3;
        Type type_of_foo = foo.GetType();
        if (type_of_foo == typeof(string))
        {
            ...
        }
        else if (type_of_foo == typeof(int))
        {
            ...
        }
        ...

Actualizar

Estoy tratando de crear recursivamente un objeto PropertyDescriptorCollection donde los tipos de PropertyDescriptor no sean valores incorporados. Así que quería hacer algo como esto (nota: esto aún no funciona, pero estoy trabajando en ello):

    public override PropertyDescriptorCollection GetProperties(Attribute[] attributes)
    {
        PropertyDescriptorCollection cols = base.GetProperties(attributes);

        List<PropertyDescriptor> list_of_properties_desc = CreatePDList(cols);
        return new PropertyDescriptorCollection(list_of_properties_desc.ToArray());
    }

    private List<PropertyDescriptor> CreatePDList(PropertyDescriptorCollection dpCollection)
    {
        List<PropertyDescriptor> list_of_properties_desc = new List<PropertyDescriptor>();
        foreach (PropertyDescriptor pd in dpCollection)
        {
            if (IsBulitin(pd.PropertyType))
            {
                list_of_properties_desc.Add(pd);
            }
            else
            {
                list_of_properties_desc.AddRange(CreatePDList(pd.GetChildProperties()));
            }
        }
        return list_of_properties_desc;
    }

    // This was the orginal posted answer to my above question
    private bool IsBulitin(Type inType)
    {
        return inType.IsPrimitive || inType == typeof(string) || inType == typeof(object);
    }

Respuestas a la pregunta(3)

Su respuesta a la pregunta