params go in, IEnumerable goes out…
Posted: 2013-07-15 Filed under: Uncategorized Leave a commentJust a little piece of goodness when you need an IEnumerable, but don’t want to construct an array or list. Simply pass all the elements to this little function (which takes a params array), and it gives it all back to you as an IEnumerable. All genericized for your convenience.
private static IEnumerable<Any> GetEnumerable<Any>(params Any[] any) { return any; }