Skip to main content
3 of 4
edited body; added 55 characters in body
Nickz
  • 1.4k
  • 1
  • 14
  • 18

The most evil thing to protect dumb programming. putting everything in a try catch and doing nothing with the catch

 try { int total = 1; int avg = 0; var answer = total/avg; } catch (Exception) { } 

I shutter when I see a try catch that does nothing and is designed to handle dumb logic. In general try catches are over used, however in some cases are very useful.

Nickz
  • 1.4k
  • 1
  • 14
  • 18