Is there a common way to pass a single item of type T to a method which expects an IEnumerable<T> parameter? Language is C#, framework version 2.0.
Currently I am using a helper method (it's .Net 2.0, so I have a whole bunch of casting/projecting helper methods similar to LINQ), but this just seems silly:
public static class IEnumerableExt
{
// usage: IEnumerableExt.FromSingleItem(someObject);
public static IEnumerable<T> FromSingleItem<T>(T item)
{
yield return item;
}
}
Other way would of course be to create and populate a List<T> or an Array and pass it instead of IEnumerable<T>.
[Edit] As an extension method it might be named:
public static class IEnumerableExt
{
// usage: someObject.SingleItemAsEnumerable();
public static IEnumerable<T> SingleItemAsEnumerable<T>(this T item)
{
yield return item;
}
}
Am I missing something here?
[Edit2] We found someObject.Yield() (as @Peter suggested in the comments below) to be the best name for this extension method, mainly for brevity, so here it is along with the XML comment if anyone want to simply grab it:
public static class IEnumerableExt
{
/// <summary>
/// Wraps this object instance into an IEnumerable<T>
/// consisting of a single item.
/// </summary>
/// <typeparam name="T"> Type of the wrapped object.</typeparam>
/// <param name="item"> The object to wrap.</param>
/// <returns>
/// An IEnumerable<T> consisting of a single item.
/// </returns>
public static IEnumerable<T> Yield<T>(this T item)
{
yield return item;
}
}
if (item == null) yield break;Now you're stopped from passing null as well as taking advantage of the (trivial) null object pattern forIEnumerable. (foreach (var x in xs)handles an emptyxsjust fine). Incidentally, this function is the monadic unit for the list monad that isIEnumerable<T>, and given the monad love-fest at Microsoft I'm surprised something like this isn't in the framework in the first place. – Matt Enright Nov 11 '09 at 12:49AsEnumerablebecause a built-in extension with that name already exists. (WhenTimplementsIEnumerable, e.g.,string.) – Jon-Eric Aug 13 '12 at 16:12item == nulldoesn't ever return false for a value type doesn't mean that you can't use it - it's a perfectly legal statement with the intended semantics. – Matt Enright Nov 5 '12 at 16:33Yield? Nothing beats brevity. – Philip Nov 19 '12 at 8:13