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

Documentation comment auto completion should not generate <returns> for indexers #38797

Open
nxtn opened this issue Sep 23, 2019 · 1 comment
Assignees
Labels
Area-IDE Bug IDE-IntelliSense Completion, Signature Help, Quick Info
Milestone

Comments

@nxtn
Copy link
Contributor

nxtn commented Sep 23, 2019

Version Used: Visual Studio 2019 Version 16.3

Steps to Reproduce:

public class Program
{
    public object this[int index]
    {
        get => throw new System.NotImplementedException();
        set => throw new System.NotImplementedException();
    }
}
+Expected Behavior
-Actual Behavior
public class Program
{
    /// <summary>
    /// 
    /// </summary>
    /// <param name="index"></param>
+    /// <value></value>
+    /// -or-
+    /// <param name="index"></param>
-    /// <returns></returns>
    public object this[int index]
    {
        get => throw new System.NotImplementedException();
        set => throw new System.NotImplementedException();
    }
}
@sharwell
Copy link
Member

Closely related to #8627

@sharwell sharwell self-assigned this Sep 23, 2019
@sharwell sharwell added Bug IDE-IntelliSense Completion, Signature Help, Quick Info labels Sep 23, 2019
@jinujoseph jinujoseph added this to the 16.4 milestone Oct 1, 2019
@jinujoseph jinujoseph modified the milestones: 16.4, Backlog Dec 11, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Area-IDE Bug IDE-IntelliSense Completion, Signature Help, Quick Info
Projects
None yet
Development

No branches or pull requests

4 participants