How do I visualize through breakpoint what values were passed to my method?

1

I would like to know if it is possible without using Debug.WriteLine to view the values passed to my method through Visual studio using a BreakPoint, either by some external resource or not.

    
asked by anonymous 09.11.2017 / 17:57

1 answer

3

Just put a breakpoint in the method and hover over the parameters.

Orputthevariablesinthewatchwindow

    
09.11.2017 / 18:04