0

I'm trying to debug some code in a blazor webassembly code behind file. It mostly works as I am used to but for some reason it doesn't show the value but a function.

You can see this in this screenshot:

enter image description here

I'm using Visual Studio 17.5.0 Preview 1.0 and .net7

Is there any setting I have to adjust so it will directly show the value instead of the method name?

Jiale Xue - MSFT
  • 3,560
  • 1
  • 6
  • 21
Simon Balling
  • 481
  • 1
  • 5
  • 14

1 Answers1

0

You can try to check Enable property evaluation and other implicit function calls in Tools > Options > Debugging > General: enter image description here

You can also see this link for more information.

Jingmiao Xu-MSFT
  • 2,076
  • 1
  • 3
  • 10
  • Unfortunately I already tried this and it didnt do what I want – Simon Balling Dec 08 '22 at 07:13
  • @SimonBalling Can you provide some code to help reproduce this problem? Also, do you have VS on your computer other than the preview version? You can test whether this method works in other versions, maybe this is a preview version problem. – Jingmiao Xu-MSFT Dec 08 '22 at 07:31