Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

First Line of Methods are Commented When Adding New Argument #66

Open
DrakeLambert opened this issue May 10, 2018 · 0 comments
Open

First Line of Methods are Commented When Adding New Argument #66

DrakeLambert opened this issue May 10, 2018 · 0 comments
Assignees

Comments

@DrakeLambert
Copy link

Steps to reproduce

  1. Write the following code:
/// <summary>
/// 
/// </summary>
/// <param name="test1"></param>
public void Test(int test1)
{ }
  1. Add an argument:
/// <summary>
/// 
/// </summary>
/// <param name="test1"></param>
public void Test(int test1, int test2)
{ }
  1. 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)
{ }
@kasecato kasecato self-assigned this May 11, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants