Fav 3 : Three Favorite .NET Tips and Tricks from Daily .NET Tips – Series 4

Here is the fourth post of the Fav 3 series that we are continuing.  Today’s favorite tips are based on debugging your application in Visual Studio.

#1 : How to get list of attached processes in Visual Studio while debugging ?

While debugging in Visual Studio, we used “Attach To Process” window to attach a particular process. We can use the same window to attach multiple processes as well.  “Attach to Process” windows grayed out the processes which are already attached and “Attach” process comes as disabled if you try to attach an grayed out process as it’s already attached… [Read Complete Post]

#2: Get Object Generation using Watch Window

If you are dealing with any objects in Watch window and you want to check the current generation for that Object you can easily get that by calling GC.getGeneration(objectName). [ Read Complete Post]

#3: How to use Runtime Objects in Watch Window during debugging in Visual Studio ?

During debugging in visual studio we generally used watch window to explore the objects, values, properties and other nested objects as a tree structure. Most of the time we used watch window to only view the values or change the current object . [ Read Complete Post]

Abhijit Jana

Abhijit runs the Daily .NET Tips. He started this site with a vision to have a single knowledge base of .NET tips and tricks and share post that can quickly help any developers . He is a Former Microsoft ASP.NET MVP, CodeProject MVP, Mentor, Speaker, Author, Technology Evangelist and presently working as a .NET Consultant. He blogs at http://abhijitjana.net , you can follow him @AbhijitJana . He is the author of book Kinect for Windows SDK Programming Guide.

One Comment to “Fav 3 : Three Favorite .NET Tips and Tricks from Daily .NET Tips – Series 4”

Comments are closed.