Debug Driven Development

   edit
Follow


Imagine you have something weird going on in an application.

Something is not behaving they way it should be, yet no exception is being thrown.

 

Then drilling down you find this piece of magic:

try
{
    DoSomething();
}
catch (Exception exception)
{
    exception.ToString();
}

     Tweet Follow @kenegozi