Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have written a little extension method to add a value to the beginning of a List.

Here is the code;

public static class ExtensionMethods
{
    public static void AddBeginning<T>(this List<T> item, T itemValue, ref List<T> currentList)
    {
        List<T> tempList = new List<T> {itemValue};
        tempList.AddRange(currentList);
        currentList = tempList;
    }
}

So that I can add the value to the beginning of the list, I have to use the ref keyword.

Can anybody suggest have to amend this extension method to get rid of the ref keyword?

share|improve this question
The angle brackets are shown literally within code blocks, <like this> so you can just add them in as usual. – Andrew Barber Nov 14 '10 at 8:35

3 Answers

up vote 7 down vote accepted

You can just call currentList.Insert(0, itemValue); to insert into the beginning.

share|improve this answer
thanks...i have marked your answer as accepted because I now realise that an extension method is unnecessary – user448374 Nov 14 '10 at 9:39
public static void AddBeginning<T>(this List<T> currentList, T itemValue)
{
    currentList.Insert(0, itemValue);
}

It really helps to read the docs for the class you're using.

Also, I would suggest just using Insert directly, instead of this extension method.

share|improve this answer

Use the List Insert method and supply the index that you want the new value (0) added at?

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.