当调试器处于中断模式时,我无法在"和"的当前范围内查看变量的值。通过将鼠标指针放在对象的属性上来阻止。也就是说,在下面的代码中,当我将鼠标悬停在" .acctProperty"找到AcctObject.acctProperty的当前值。
With AcctObject
...
Dim xyz = .acctProperty
'''
End With
这是VS2015中的VB.NET。有没有办法实现这个目标?
答案 0 :(得分:1)
您只需在观察窗口中输入 //create the array from file
char *array[100];
char string[80];
FILE * file;
file = fopen( "file.txt" , "r");
if (file) {
int k = 0;
while (fscanf(file, "%s", string)!=EOF){
array[k] = strdup(string);
k++;
}
fclose(file);
}
//print the history array for debugging
for(int k = 0; k<sizeof(array); k++){
printf("the element at %d is: %s\n", k, array[k]);
}
即可。
如果找不到观察窗口 - 那么您可以在调试模式下从顶部菜单中选择AcctObject.acctProperty
来访问它。