Before this gets marked as duplicate, I know this question has been asked in the past [1] [2], but the answers are extremely outdated and only contain workarounds and 3rd party tools.
The exact question here would be: Is it possible to change the xml comment template generated by typing "///" in Visual Studio 2019+ without using 3rd party tools? For example, add custom tags to the template?
For example, replace:
/// <summary>
///
/// </summary>
/// <param name="myParam"></param>
/// <returns></returns>
public int MyMethod(string myParam) { }
with:
/// <summary>
///
/// </summary>
/// <param name="myParam"></param>
/// <myTag></myTag>
/// <returns></returns>
public int MyMethod(string myParam) { }