c# – VS调试器无法正常工作

当我调试我的ASP.NET应用程序并在断点处执行时,我无法使用Debug Watches读取类型变量.为什么?我收到错误

type    The name 'type' does not exist in the current context   

代码工作正常,问题只在调试时,我无法在调试时读取所有变量.

var converterSubClasses = new List<Type>();
GetClassHierarhy(ref converterSubClasses, converterClass);

foreach (var type in converterSubClasses)
{
  /* break point here */  var classProperties = type.GetProperties(BindingFlags.Public | BindingFlags.Instance);
  /* skip code */
}

最佳答案 您是否在调试以发布模式编译的代码?根据编译器使用的优化,变量类型可能实际上并不存在.确认您正在调试Debug编译的代码,然后尝试. (我尝试在发布模式下调试时,循环没有意义,整个部分都跳了起来.)

点赞