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 Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s