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

Value tracking window doesn't track setting to null value #75485

Open
vsfeedback opened this issue Oct 11, 2024 · 0 comments
Open

Value tracking window doesn't track setting to null value #75485

vsfeedback opened this issue Oct 11, 2024 · 0 comments
Labels
Area-Interactive untriaged Issues and PRs which have not yet been triaged by a lead

Comments

@vsfeedback
Copy link

This issue has been moved from a ticket on Developer Community.


[severity:It’s more difficult to complete my work]
The value tracking window doesn’t show entries in which a variable is set to null. For example, for this code:

internal class Program
{
    public static string text;

    private static void Main(string[] args)
    {
        text = "Meow";
        text = "";
        text = null;
    }
}
  

If I right-click on the “text” field and select “Track Value Source”, the value tracking window shows the lines “text = “”;” and “text = “meow”;”, but not the “text = null;” one.


Original Comments

Feedback Bot on 9/29/2024, 09:52 PM:

We have directed your feedback to the appropriate engineering team for further evaluation. The team will review the feedback and notify you about the next steps.

@dotnet-issue-labeler dotnet-issue-labeler bot added Area-Interactive untriaged Issues and PRs which have not yet been triaged by a lead labels Oct 11, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Area-Interactive untriaged Issues and PRs which have not yet been triaged by a lead
Projects
None yet
Development

No branches or pull requests

1 participant