I noticed, as well as saw in the Essential C# 3.0 book, that paramters are usually defined as T or TEntity
For example:
public class Stack<T>
{
}
or
public class EntityCollection<TEntity>
{
}
How do you decide which name to use?
Thanks