Stories recently tagged with 'Debugging' Subscribe to this feed

Debugging Dynamic objects Part 1 (blogs.msdn.com)

submitted by SreekarSreekar(200) 10 months, 29 days ago

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

add a comment | category: | Views: 8

tags: another

Modifying VB XML Literals at Debug-Time (diditwith.net)

submitted by cls2degcls2deg(1515) 11 months, 25 days ago

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

add a comment | category: | Views: 4

tags: another

How to get remote debugging to work successfully (www.milkcarton.com)

published 1 year, 1 month ago, submitted by darukudaruku(240) 1 year, 1 month ago

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

3 comments | category: | Views: 251

tags: another

How to debug crashes and hangs (blogs.msdn.com)

submitted by KirillOsenkovKirillOsenkov(565) 1 year, 2 months ago

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 Enable unmanaged code debugging Attaching to multiple processes Selecting processes and threads Breaking on first-chance exceptions using the Debug | Exceptions dialog Picking the right thread Loading symbols Viewing the call stack Saving the minidump file read more...

1 comment | category: | Views: 28

tags: another

Debug an executable without using Attach to Process (blogs.msdn.com)

submitted by schalkvanwykschalkvanwyk(1100) 1 year, 5 months ago

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

add a comment | category: | Views: 31

tags: another

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

submitted by xxXdxxXd(1430) 1 year, 6 months ago

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

add a comment | category: | Views: 9

tags: another

.NET Debugging Demos - Information and setup instructions (IIS) (blogs.msdn.com)

submitted by chipso4chipso4(60) 1 year, 8 months ago

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 development machine where you install the demos. read more...

add a comment | category: | Views: 10

tags: another

Custom Controls Design Time Support Part 15: Debugging Design Time (www.amrelsehemy.net)

published 1 year, 11 months ago, submitted by AmrElsehemyAmrElsehemy(2580) 1 year, 11 months ago

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

add a comment | category: | Views: 32

tags: another

C# Debugging Improvements for VS 2008 SP1- Part 1 (blogs.msdn.com)

submitted by SreekarSreekar(200) 2 years ago

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 the post long so i am going to discuss Range variables this time and continue on with the other 2 in the next post. read more...

add a comment | category: | Views: 29

tags: another

Debugging C# 3.0 Part II (blogs.msdn.com)

submitted by SreekarSreekar(200) 2 years, 2 months ago

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 the SP1 work for debugging. read more...

add a comment | category: | Views: 6

tags: another

DebuggerStepThroughAttribute: Save time while debugging (blog.zwares.com)

submitted by sepdfwsepdfw(115) 2 years, 3 months ago

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

add a comment | category: | Views: 52

tags: another

Building release builds with pdb files (blog.vuscode.com)

published 2 years, 3 months ago, submitted by malovicnmalovicn(1450) 2 years, 3 months ago

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

add a comment | category: | Views: 20

tags: another

Debugging with Debug.WriteLine And StackTrace (www.gringod.com)

submitted by gringodgringod(270) 2 years, 3 months ago

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

add a comment | category: | Views: 5

tags: another

The Moth: Multithreaded Debugging Enhancements in Visual Studio 2008 (www.danielmoth.com)

submitted by findmecoolfindmecool(590) 2 years, 4 months ago

Rather than writing or screenshoting the new multithreaded debugging enhancements in Visual Studio 2008, I thought I'd create a 15' video to demonstrate them. See if you can spot what the bug is before I "discover" it in my demo ;-). read more...

1 comment | category: | Views: 2

tags: another

Bug Debugging Method Parameters in C++ (www.alteridem.net)

submitted by rprouserprouse(1165) 2 years, 4 months ago

Here is why you should make sure your parameter names are consistent between your declarations and definitions in C++. Not doing so leads to strange and confusing behavior in the debugger. read more...

add a comment | category: | Views: 0

tags: another

Easier Debugging with Attributes (www.alteridem.net)

published 2 years, 5 months ago, submitted by rprouserprouse(1165) 2 years, 5 months ago

Most people probably haven’t realized that there are several attributes that you can add to your code to make debugging easier. Some prevent you from stepping into sections of code, others change the way variables are displayed in the watch window. read more...

add a comment | category: | Views: 8

tags: another