1
2
3
4
class Item
{
...

C# Traversing a List and colle...

by arjang.assadi.myopenid.com, July 09, 2008 04:48, 6 refactorings, tagged with generics

I like to to traverse a lis...

68225315200a9e0f0b949b7aec9b3b11 Talk
1
2
3
4
public static List<T> MergeListCollections<T>(List<T> firstList, List<T> secondList)
{
    List<T> mergedList = new List<T>();
...

C# Merge generic lists

by nkirkes.myopenid.com, June 30, 2008 18:42, 5 refactorings, tagged with C#, List<T>, generics

Toying with some utility me...

9661a8802c6d6f7e876c6fc7bae6721b Talk