I’ve been teaching myself C# for the last 2 years or so. I’ve got a reasonable handle on a lot of the language/ programming in general. However I feel like I’m massively missing the mark when it comes to debugging.

I deal with a lot of multithreaded and real-time applications that interact with physical hardware. I can set breakpoints and inspect variable values at the breakpoint, step into, step over, etc. But the “autos” and “locals” windows are something I don’t understand.

Are there any decent courses/resources that teach me some intermediate debugging skills. Particularly interested in resources that focus on Visual Studio tools (extra points for resources that include tips on VS Enterprises debugging tools, like step backwards, etc.).

Appreciate anyone pointing me in the right direction! I’ve learnt by feel up to this point, but I’ve hit a wall and could use some structured docs or courses.

  • @Isaac95OP
    link
    21 year ago

    Thanks for such a detailed reply, specific to my use case. Really helpful tips.

    and also a device simulator down to the byte/protocol level, then you can inject faults and ensure your app can handle them.

    I know I should do this, it’s just such a PIA for me since I hate reading/implenting standards so I’ve avoided it. Thanks for the push, I think I’ll make a start on one this weekend.