Error!
Success!

By tag: Debugging

showing:  of
0
kicks

"!CLRStack -p" Isn't Always Reliable  (Unpublished)

As this post demonstrates, using SOS's "!CLRStack -p" command, incorrect parameter values might be shown even at the most basic debugging scenarios


Kicked By:
Drop Kicked By:
0
kicks

Improving the display of F# seq’s in the debugger  (Unpublished)

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).


Kicked By:
Drop Kicked By:
0
kicks

Debugging Dynamic objects Part 1  (Unpublished)

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


Kicked By:
Drop Kicked By:
0
kicks

Modifying VB XML Literals at Debug-Time  (Unpublished)

Article showing how to change XML literals in the debugger without using Edit and Continue.


Kicked By:
Drop Kicked By:
0
kicks

How to get remote debugging to work successfully  (Unpublished)

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."


Kicked By:
Drop Kicked By:
0
kicks

How to debug crashes and hangs  (Unpublished)

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...


Kicked By:
Drop Kicked By:
0
kicks

Debug an executable without using Attach to Process  (Unpublished)

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...


Kicked By:
Drop Kicked By:
0
kicks

Debugging ASP .NET AJAX with Firebug and Web Development Helper  (Unpublished)

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.


Kicked By:
Drop Kicked By:
0
kicks

.NET Debugging Demos - Information and setup instructions (IIS)  (Unpublished)

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...


Kicked By:
Drop Kicked By:
0
kicks

Custom Controls Design Time Support Part 15: Debugging Design Time  (Unpublished)

The final part in the series describing how to debug design time support.


Kicked By:
Drop Kicked By:
0
kicks

C# Debugging Improvements for VS 2008 SP1- Part 1  (Unpublished)

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 ...


Kicked By:
Drop Kicked By:
0
kicks

Debugging C# 3.0 Part II  (Unpublished)

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 ...


Kicked By:
Drop Kicked By:
0
kicks

DebuggerStepThroughAttribute: Save time while debugging  (Unpublished)

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.


Kicked By:
Drop Kicked By:
0
kicks

Building release builds with pdb files  (Unpublished)

Visual Studio 2005 builds release builds with pdb files by default Find out why that is a best practice for the release builds


Kicked By:
Drop Kicked By:
0
kicks

Debugging with Debug.WriteLine And StackTrace  (Unpublished)

A simple tip for making your debugging life easier by combining Debug.WriteLine() with StackTrace


Kicked By:
Drop Kicked By: