I was wondering if it is possible to refer to the dynamic name of a common class in a comment and is it allowed in the IDE?
An example of a simple base class:
// <summary> // Retrieves all <T> members from the database. // </summary> public void GetAll<T>() { //magic }
If I now inherit from this class and, it turns out, is the User class, then I would like IntelliSense to show my comment as "Retrieves all users from the database."
Is it possible?
c # visual-studio intellisense xml-comments xml-documentation
Alex
source share