Sign in
Mike Stall's .NET Debugging Blog
Notes on Managed Debugging, ICorDebug, and random .NET stuff
Blog - Link List
Other Blogs
Tim's .NET blog
Energy Policy
CLR blogs
Rick Byers (CLR)
List of all CLR blogs
David Broman (Profiling)
Thomas Lai's blog
Other links
All about MDbg
What's new in v2.0?
Who am I?
ICorDebug/MDbg Forums
Contact me?
ASP.Net
ScottGu's blog
Henrik's blog
Brad Wilon's blog
Carlos Figueira's blog
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Options
RSS for posts
Atom
RSS for comments
OK
Search
Tags
Compilers & Languages
Design
dlr
Edit-And-Continue (EnC)
Family
feedback
FuncEval
ICorDebug
Interop (mixed-mode)
linkfest
MDbg
Non-work
Pages
Quiz
Random
random .net
reading
Sample Code
Silverlight
This should be in MSDN
Troubleshooting
versioning
WebAPI
Whidbey (V2.0)
Windows Live
Archive
Archives
August 2012
(2)
May 2012
(3)
April 2012
(5)
March 2012
(2)
November 2011
(1)
September 2011
(1)
December 2010
(1)
September 2009
(2)
July 2009
(1)
May 2009
(1)
February 2009
(1)
November 2008
(1)
June 2008
(1)
May 2008
(2)
April 2008
(3)
March 2008
(5)
February 2008
(2)
January 2008
(10)
December 2007
(7)
November 2007
(5)
October 2007
(16)
September 2007
(8)
August 2007
(12)
July 2007
(9)
June 2007
(5)
May 2007
(7)
April 2007
(4)
March 2007
(6)
February 2007
(5)
January 2007
(11)
December 2006
(9)
November 2006
(13)
October 2006
(9)
September 2006
(10)
August 2006
(6)
July 2006
(13)
June 2006
(10)
May 2006
(3)
April 2006
(4)
March 2006
(31)
February 2006
(16)
January 2006
(18)
December 2005
(11)
November 2005
(23)
October 2005
(12)
September 2005
(22)
August 2005
(31)
July 2005
(10)
June 2005
(7)
May 2005
(4)
April 2005
(5)
March 2005
(9)
February 2005
(16)
January 2005
(6)
December 2004
(3)
November 2004
(4)
October 2004
(14)
September 2004
(2)
October, 2005
MSDN Blogs
>
Mike Stall's .NET Debugging Blog
>
October, 2005
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
Mike Stall's .NET Debugging Blog
VS2005 ships!
Posted
over 8 years ago
by
Mike Stall - MSFT
4
Comments
As you've probably already heard by now, VS2005 has shipped ! I've been using VS2005 for a while now (afterall, MDbg only runs on CLR 2. 0). Since I've been so involved in V2.0, I had forgotten how many people are still on V1.1 and V1.0. (update: fixed...
Mike Stall's .NET Debugging Blog
Do printer manufacturers do any scenario testing?
Posted
over 8 years ago
by
Mike Stall - MSFT
13
Comments
We do a thing called "Scenario Testing" where we run through common end-user scenarios to make sure they work from end to end. This is like the antithesis of unit testing. The reason is that often each single component does the right thing, but when you...
Mike Stall's .NET Debugging Blog
Document properties that don't round-trip.
Posted
over 8 years ago
by
Mike Stall - MSFT
12
Comments
I personally think most API documentation is lame and either leaves critical behavior qualities unspecified, or don't comment when standard assumptions may be broken. One example is not documenting object lifespans . Another example is that you'd normally...
Mike Stall's .NET Debugging Blog
Update to Iron Python MDbg sample.
Posted
over 8 years ago
by
Mike Stall - MSFT
1
Comments
Shawn Farkas just let me know that the latest Iron Python 9.3 release breaks my Iron-Python Mdbg sample : So the 0.9.3 release breaks the mdbg extension – the fix is pretty quick though. When creating the streams to redirect stdin, out, and err...
Mike Stall's .NET Debugging Blog
Informal poll on debugger feature requests?
Posted
over 8 years ago
by
Mike Stall - MSFT
23
Comments
What new feature requests do you want in the managed debugging services? In other words, if you could spend $100 on the following debugger-related items, how would it break down: 1) Support for debugging a managed dump file (without needing SOS) 2) Data...
Mike Stall's .NET Debugging Blog
New web look
Posted
over 8 years ago
by
Mike Stall - MSFT
0
Comments
You may have noticed the web page layout of my blog is now different. My reasoning was that it actually renders better this way. I include a lot of tables. In the old layout, there were two sidebars: one on the left and one on the right. If the width...
Mike Stall's .NET Debugging Blog
Big picture on Symbol APIs
Posted
over 8 years ago
by
Mike Stall - MSFT
2
Comments
Here's how the managed symbol API fits into the overall symbol-store / PDB picture, courtesy of Steve Steiner and Curtis Man. There's a basic uniform low level storage for both managed and native symbols. The low-level API is private, and then there are...
Mike Stall's .NET Debugging Blog
.Net / ASP.Net Developers: check out Tim's blog
Posted
over 8 years ago
by
Mike Stall - MSFT
3
Comments
Tim Stall writes a .Net blog for .Net Developer’s Journal ( http://timstall.dotnetdevelopersjournal.com ), which I'd like to recommend (you'll notice I've linked him over on the 'links' section). Whereas my blog is very low level and focuses mostly on...
Mike Stall's .NET Debugging Blog
Native threads still run at a managed breakpoint.
Posted
over 8 years ago
by
Mike Stall - MSFT
1
Comments
When you hit a managed-breakpoint while managed-only debugging, only the managed threads are stopped. So threads that are not running managed code can continue to run and won't stop unless they hit managed code. If a thread was in managed code but called...
Mike Stall's .NET Debugging Blog
Debugging support for ASP.Net
Posted
over 8 years ago
by
Mike Stall - MSFT
0
Comments
From the CLR perspective, ASP.Net is just another managed application. You can just attach MDbg to it and start debugging. While this works, it has some limitations: You need to: 1) make sure ASP.Net is deployed and started (since MDbg can only attach...
Mike Stall's .NET Debugging Blog
Viewing Exception Message string
Posted
over 8 years ago
by
Mike Stall - MSFT
1
Comments
Several people have asked how managed debugger tools can print more details about an exception, such as its message string. Just printing that an exception of type "BadArgumentException" was thrown is a nice start. Managed Exceptions are associated with...
Mike Stall's .NET Debugging Blog
Remote Debugging vs. Remote UI
Posted
over 8 years ago
by
Mike Stall - MSFT
1
Comments
Visual Studio supports "Remote Debugging" ( Gregg talks about that a lot here ), which is the ability for the debugger and debuggee to be on different machines. It turns out the CLR Debugging services don't provide any explicit support for remote debugging...
Page 1 of 1 (12 items)