VS studio在调试期间不显示新变量的值

时间:2015-10-07 18:47:23

标签: c# visual-studio

有一个班级

public class ABC
{
  private wt;
  private nos;
  MyDictionary1;
  MyDictionary2;

  public void XYZ(some arguements)
  {
    // Dictionaries are populated here ( I can see the contents during debug)

    wt = MyDictionary1[arguements.key]; // wt was added last week. shows value during debugging
    no = MyDictionary1[arguements.key]; // Added no today, does not show value during debudding
   }

}

控件确实对没有赋值的行执行操作。但当我加入观看时,VS说“不”。在当前背景下不存在。如果两个变量都以相同的方式声明和填充,我不知道为什么会发生这种情况。 有人可以帮忙吗?

1 个答案:

答案 0 :(得分:0)

清洁解决方案以及之后的构建解决方案。如果它不起作用,请删除bin和obj文件夹,构建解决方案并重试。