/// <summary> /// Something about this generic method which works with ??? type. /// </summary> /// <typeparam name="T">∙∙∙</typeparam> /// <returns></returns> public T Foo<T>() { ∙∙∙ }
Is it possible to write a comment in the summary tag to show the currently set type of the generic type. (how does visual-studio do this)?
( for example, We can see Something about this generic method which works with string type. in the prompt Foo<string>() )
source share