I try to do this:
IEnumerable ids = new List() { \"0001\", \"0002\", \"0003\" };
it works great!
But wh
Another solution would be to use the extension method Enumerable.Cast as such:
Dim a as IEnumerable(Of Integer) = GetA() MethodThatTakesIEnumerableOfObject(a.Cast(Of Object))