I\'m using exceptions to validate a control\'s input in Silverlight 4. When I throw an invalid input exception, VS 2010 displays the popup and stops the program. I ignore th
You can disable some throw block by surrounding in the block
#if !DEBUG throw new Exception(); /// this code will be excepted in the debug mode but will be run in the release #endif