6 Replies
using System.Linq;
?IEnumerable
. ToList
only works on IEnumerable<T>
.ah crap
noooooooooo
the interface FORCE me to return IEnumble
how can I get list out of it ?
That's dumb
Well, you could do
.OfType<string>().ToList()
if you're sure the objects will always be strings.got it