vscode-docomment
vscode-docomment copied to clipboard
First Line of Methods are Commented When Adding New Argument
Steps to reproduce
- Write the following code:
/// <summary>
///
/// </summary>
/// <param name="test1"></param>
public void Test(int test1)
{ }
- Add an argument:
/// <summary>
///
/// </summary>
/// <param name="test1"></param>
public void Test(int test1, int test2)
{ }
- Use [ctrl + .] on
test2
to add param notes.
The param notes will be added, but the method signature becomes commented out.
/// <summary>
///
/// </summary>
/// <param name="test1"></param>
/// <param name="test2"></param>
/// public void Test(int test1, int test2)
{ }