George
George

Reputation: 298

What is the best debugging strategy to follow in visual c#?

when you start debugging, how do you organize your work? are there any regular actions you take before/while debugging?

in other words what's the best strategy you follow?

thank you

Upvotes: 1

Views: 242

Answers (2)

Andrew Bullock
Andrew Bullock

Reputation: 37378

My debugging strategy is to write tests so I don't need to use a debugger.

Upvotes: 3

ckv
ckv

Reputation: 10830

This basically depends on what your aim is by debugging. Are you fixing some issues check data etc.

But basic thing is to setup a debugger like Visual studio or something which will make your life simpler.

Upvotes: 0

Related Questions