### Summary Show a hint for generic parameters. ### Background and Motivation Hints for method parameters exist. A similar hint for generic parameters would be helpful. ### Proposed Feature Take the following example code: ```cs /// <typeparam name="T">Param documentation.</typeparam> class C<T> where T : class; ``` When using the class by typing `C<`, a hint along these lines would be helpful: ``` (generic parameter) class T Param documentation. ```