Visual Studio鼠标调试不适用于特定变量

时间:2016-06-17 21:40:44

标签: visual-studio debugging visual-studio-2015 deb

我正在尝试调试控制器,而某个特定变量未显示工具提示。我试过重启电脑和视觉工作室无济于事。

    [HttpPut]
    [Route("{id}")]
    public async Threading.Task<IHttpActionResult> Put([FromUri] Guid id, [FromBody] Api.Document documentModel)
    {
        var test = await PutOrStatusCodeAsync(documentModel, id).ConfigureAwait(true);
        return test;
    }

所有其他变量都可以被鼠标悬停:

<code>enter image description here</code>

但不是我需要的那个:

enter image description here

我将它添加到监视列表中并且在表达式评估程序中得到了#34;内部错误&#34;。

我找到了这个帖子:Get "Internal error in the expression evaluator" on "Add watch" function when trying to debug WCF service code (MSVS 2013),但我使用托管兼容模式是灰色的!

enter image description here

我作为管理员运行VS.帮助!

1 个答案:

答案 0 :(得分:0)

我明白了。它因为我正在调试而变灰了。一旦我停止了这个过程,就可以检查了。