Hi, I was wondering if it is possible to reference a dynamic generic class name in a comment and have it conditionally resolved in the IDE?
Simple base class example:
// <summary>
// Retrieves all <T> members from the database.
// </summary>
public void GetAll<T>()
{
//magic
}
If I now inherit from this class and happens to be class User then I'd like to have IntelliSense show my comment as "Retrieves all User members from the database".
Is this possible?