How to debug my c# application in visual studio? -


i have small c# application creates folders , want debug it.i have added debugger.break() inside code & not able attach process visual studio because click on exe start finishes operation.surely missing silly here.any solutions?

you need set breakpoint in code. click on gray gutter running down left hand side of code editor window, there line of code. red dot should appear , breakpoint. may need try few different lines cannot break on lines of code. run app within visual studio clicking on green arrow (continue) button in toolbar. when execution hits breakpoint, should stop , able debug there within visual studio.

i suggest read more info getting started debugging


Comments

Popular posts from this blog

PySide and Qt Properties: Connecting signals from Python to QML -

c# - DevExpress.Wpf.Grid.InfiniteGridSizeException was unhandled -

scala - 'wrong top statement declaration' when using slick in IntelliJ -