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
|
|
I noticed, as well as saw in the Essential C# 3.0 book, that paramters are usually defined as T or TEntity For example:
or
How do you decide which name to use? Thanks |
||
|
|
|
|
Here is my set of rules
For a semi-official opinion, it's worth looking at the framework design guidelines on the subject: |
||
|
|
|
|
Example from Microsoft:
The type parameter represents something, so if you want to have readable code, this "something" should be obvious from the code (without extra comments). Using type names like T, V, U isn't necessarily obvious (but sometimes it can be). |
||
|
|
|
|
In the end, it doesn't REALLY matter. Use a naming convention that makes sense.
is probably not as useful as
(or TKey, TValue, if you prefer). If I'm looking at your implementation and have to think "ok, what is this 'T3' thing again?" then you didn't do a good job. |
||
|
|
|
|
I'm not aware of any solid conventions for generics really. The samples that I have seen though use one of the ff variations:
I guess generics are new enough that common industry conventions haven't been established yet. |
||
|
|