Home > Blockchain >  Edit the value of a list item in Visual Studio while debugging?
Edit the value of a list item in Visual Studio while debugging?

Time:10-15

Is this something you can't do?

You can put a breakpoint and edit an int variable value, but this you can't edit the value of a list item?

CodePudding user response:

You can do that using Quick watch feature,

  • Where you want to change value of list, put a debugger.
  • Right click there and select Quick watch(shift F9).
  • Update the expression as below

enter image description here

CodePudding user response:

In addition to the "Quick Watch" answer, you can use the enter image description here

  • Related