
In this article, we will look into Visual Studio 2008 new feature called as tracepoints. Tracepoints is a handy feature in logging the values in debugging mode. In earlier versions of Visual Studio, we use console.writeline statement or write to a file using stream objects for logging the values of a variable. But, later we need to remove those statements while delivering the code. In order to resolve this kind of troubles, visual studio came up with tracepoints. We can use tracepoints to print variable's values to Output window's Debug pane. Most of us use debugging, to check whether the values coming are correct or not.
|