Posts

Showing posts with the label rohan vispute

Debugging tricks with Visual Studio

Introduction Debugging is important of solving,correcting methods in VS. Some trick anf facts about debugging .MY friend send me this link ,you have refer  following link. It will help you .  Debugging is a major part of the development lifecycle. Sometimes challenging, sometimes puzzling, sometimes annoying, one for sure - it is unavoidable for any not-so-trivial program. The progress of debugging tools over the last years has made many debugging tasks much easier and less time-consuming. This article summarizes ten debugging tricks and techniques that can save you a lot of time when using Visual Studio. http://www.codeproject.com/Articles/359801/10plus-powerful-debugging-tricks-with-Visual-Studi

How to DEBUG the Code ??

Image
Basic steps   “ How to debug the code “ Steps : 1)       Put the breakpoint (Click on left-hand side of window ) Yellow colored line shows you are Compiling following line.Red Symbol showing your debugging started from that line  [Note : You can’t put breakpoint to GUI or presentation like .aspx file. Only in *.aspx.cs,*.cs etc   and you can’t put breakpoint for NAMESPACES ] 1)       For Debugging you have some Important   shortcut keys like F10 -   Start debugging F11 – Go inside to the   Particular method when that yellow color available on that line 2)       When you   move your curser through objects,variables , methods etc its show description of that . 3)       When you start debugging again and again then , no need to stop process .Only just right click from where you   want to start debugging and click “SET NEXT STATEMENT” That blue-mark …...