I come from the background of PHP, where my "debugging" tools are mostly echo, var_dumpand exit. Although I know the importance of debugging, I never tried to use / learn the debugging tool.
Now I am studying C #, and I think I can’t really , without extensive knowledge of this area.
So my question is: where can I find out what is and how to do debugging? I know what a breakpoint is (conceptually), but how to use it? How to use step and step forward? Basic things like this.
As a related question, in C # (Visual Studio) there is something like var_dumpwhere I can validate any object.
It is very difficult and painful foreachfor me to do for each array / list to see the contents, especially now when I am still learning the language.
source
share