I try to do this:
IEnumerable ids = new List() { \"0001\", \"0002\", \"0003\" };
it works great!
But wh
int is a value type and can only be boxed to object - it doesn't inherit from object. Since you're using an IEnumerable anyway, this should work:
int
object
IEnumerable
IEnumerable intIds = new List() { 1, 2, 3 };