By tag: Debugging
0
kicks
"!CLRStack -p" Isn't Always Reliable
As this post demonstrates, using SOS's "!CLRStack -p" command, incorrect parameter values might be shown even at the most basic debugging scenarios
0
kicks
Improving the display of F# seq’s in the debugger
A great post that explains how to make debugging F# seq<T> expressions easier by getting the debugger to display them using the IEnumerable<T> "Results View" node in the watch windows (like they do for C# and VB).
0
kicks
Debugging Dynamic objects Part 1
With C# 4.0 we can instantiate and perform operations on objects from dynamic languages like iron python, Iron ruby by using the dynamic keyword. In this post i will show you the tools added to inspection these objects and how one can reuse this for debugging COM objects
0
kicks
Modifying VB XML Literals at Debug-Time
Article showing how to change XML literals in the debugger without using Edit and Continue.
0
kicks
How to get remote debugging to work successfully
FTA:"After much time, trial and error, I was finally able to get Visual Studio's remote debugging features to work. In my travels around the Internet, no one seems to have compiled all the steps to make the process work successfully and seemlessly into one page, this is my attempt."
0
kicks
How to debug crashes and hangs
At my job on the C# IDE QA team I've learned some useful things about debugging in Visual Studio, which I'd like to summarize in this post:
Turning off "Enable just my code"
Attaching the debugger using Tools | Attach To Process
Selecting Managed, Native for mixed-mode debugging or En...
0
kicks
Debug an executable without using Attach to Process
Debug an executable that isn’t a part of a Visual Studio project without using Tools – Attach to Process.
You can attach to the exe before it even starts, helps debugging those bugs in startup...
0
kicks
Debugging ASP .NET AJAX with Firebug and Web Development Helper
Bugs bite. With programming, bugs break your application; sour the relationship with the users. So by all means, debug!
FireBug is a gem of bug for debugging. You can also debug with web development helper as well as native visual studio script debugger.
0
kicks
.NET Debugging Demos - Information and setup instructions (IIS)
This is a series of debugging demos aimed to help you get some hands on experience in debugging the most common types of Hang/performance, memory and crash scenarios in .net applications.
The demos are written in ASP.NET which means that you do need IIS and .net framework 2.0 installed on the de...
0
kicks
Custom Controls Design Time Support Part 15: Debugging Design Time
The final part in the series describing how to debug design time support.
0
kicks
C# Debugging Improvements for VS 2008 SP1- Part 1
Over the past few months I have been busy closing VS 2008 and working on some fixes for SP1. We have enabled some key debugging scenarios in C# in VS 2008 SP1, they include support for
Range Variables in Queries &
Anonymous Types
Generic Type arguments
Covering all of them was making ...
0
kicks
Debugging C# 3.0 Part II
In the last article I covered the "results view" for lazy evaluated collections like Queries/Enumerable and the use of extension methods in the watch and immediate window. For completeness I will cover stepping, range variables, anonymous types and Xlinq support and this will lead us into ...
0
kicks
DebuggerStepThroughAttribute: Save time while debugging
Properties are a great feature in .Net, no doubt. The only time I have a problem with them is when I have simple properties and I am stepping through code while debugging. Here's a .Net feature that will save you time.
0
kicks
Building release builds with pdb files
Visual Studio 2005 builds release builds with pdb files by default
Find out why that is a best practice for the release builds
0
kicks
Debugging with Debug.WriteLine And StackTrace
A simple tip for making your debugging life easier by combining Debug.WriteLine() with StackTrace