vote up 2 vote down star

For example:

string element = 'a';
IEnumerable<string> list = new List<string>{ 'b', 'c', 'd' };

IEnumerable<string> singleList = ???; //singleList yields 'a', 'b', 'c', 'd'
flag

76% accept rate

6 Answers

vote up 7 vote down check

I take it you can't just Insert into the existing list?

Well, you could use new[] {element}.Concat(list).

Otherwise, you could write your own extension method:

    public static IEnumerable<T> Prepend<T>(
            this IEnumerable<T> values, T value) {
        yield return value;
        foreach (T item in values) {
            yield return item;
        }
    }
    ...

    var singleList = list.Prepend("a");
link|flag
+1. But :( for the Java style brackets! – Ian Quigley Apr 29 at 14:21
1  
@Ian: I think you mean The One True Brace Style, from K&R onwards. – Richard Apr 29 at 14:24
Shouldn't that be Concat() instead of Union()? Union() returns only distinct elements. – Lucas Apr 29 at 14:46
There was a typo: use Concat, not Union – jyoung Apr 29 at 14:51
OK - Concat has it – Marc Gravell Apr 29 at 14:52
show 1 more comment
vote up 2 vote down

You can roll your own:

IEnumerable<T> Prepend<T>(this IEnumerable<T> seq, T val) {
 yield return val;
 foreach (T t in seq) {
  yield return seq;
 }
}

And then use it:

IEnumerable<string> singleList = list.Prepend(element);
link|flag
vote up 1 vote down

No, there's no such built-in statment, statement, but it's trivial to implement such function:

IEnumerable<T> PrependTo<T>(IEnumerable<T> underlyingEnumerable, params T[] values)
{
    foreach(T value in values)
        yield return value;

    foreach(T value in underlyingEnumerable)
        yield return value;
}

IEnumerable<string> singleList = PrependTo(list, element);

You can even make it an extension method if C# version allows for.

link|flag
If you make this an extension method, You just implemented IEnumerable<T>.Union() :P – Lucas Apr 29 at 14:41
errr i mean Concat() – Lucas Apr 29 at 14:42
vote up 1 vote down

This would do it...

IEnumerable<string> singleList = new[] {element}.Concat(list);

If you wanted the singleList to be a List then...

IEnumerable<string> singleList = new List<string>() {element}.Concat(list);

... works too.

link|flag
In your second example, singleList is an IEnumerable, not a List. – Lucas Apr 29 at 14:48
vote up 1 vote down
public static class IEnumerableExtensions
{
    public static IEnumerable<T> Prepend<T>(this IEnumerable<T> ie, T item)
    {
         return new T[] { item }.Concat(ie);
    }
}
link|flag
Looks to me like you are concating the item to the end, not prepending it... – Josh G Apr 29 at 14:26
Oops, good point. I'll edit... – BFree Apr 29 at 14:28
vote up 0 vote down

Also:

IEnumerable<string> items = Enumerable.Repeat(item, 1).Concat(list);
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.