Browse by Tags

All Tags » Debugging (RSS)
Application failures will occur. The user could perform a sequence of operations or enter a value that you don’t expect, the connectivity to your database could be interrupted, the code could have a logic error, or many other possibilities. The .NET Framework...
3 comment(s)
Filed under: , , , ,
There are situations where you may want to know who called a particular method in your application. Maybe you want to log it or use the information for debugging purposes. Whatever the reason, you can get information on the call stack using the StackTrace...
1 comment(s)
Filed under: , , , ,
Being a physics major in college, I am familiar with the Heisenberg Uncertainty Principle which basically states that in quantum physics, some properties (like position and momentum) cannot both be known to any precision. Though not technically accurate...
1 comment(s)
Filed under: , , , ,
This post details how to use the DataTable Visualizer. The DataTable Visualizer is a debugging tool that allows you to see and edit the contents of a DataTable while you are debugging. NOTE: There is also a DataSet Visualizer that works the same way for...