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?
<like this>so you can just add them in as usual. – Andrew Barber♦ Nov 14 '10 at 8:35