1
2
3
4
public class Pseudonym<T extends Pseudo> {
	private T alias;
	private T original;
...

Java Limiting two arguments to t...

by DaJunkie, June 24, 2010 16:42, 1 refactoring, tagged with java, generics, parametrization

Hi, I just want to disallow...

8e21dd65dca319ca81a0cd80393d4c13 Talk
1
2
3
4
        public static Func<TDbTable, bool> GetWhereClauseForAll<TDbTable, TEntity>(
            this List<TEntity> objects,
            Func<TEntity, Func<TDbTable, bool>> comparison)
...

C# Generic Linq where clause O...

by Torbjørn, November 12, 2009 11:43, 1 refactoring, tagged with generics, LINQ, Extension

Suddenly found myself havin...

8bc7bb10bee96efb190053fe92ffd250 Talk
1
2
3
4
public IList<IStatus> RepsonseHandler(string responseText)
{
	IList<IStatus> Output = null;
...

C# Generic Lists of Different ...

by mkoby, May 12, 2009 20:25, 2 refactorings, tagged with C#, generics

I have some code for a Twit...

Ef9a110e6f84d3ebf3d4672ad090a1de Talk
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