params go in, IEnumerable goes out…

Just 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;
}


Leave a comment