25
votes
What are your favorite extension methods for C#/.NET? (codeplex.com/extensionoverflow)
The extention method:
public static void AddRange<T>(this List<T> list, params T[] values)
{
foreach (T value in values)
list.Add(value);
}
…
