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)
December, 2006
MSDN Blogs
>
Mike Stall's .NET Debugging Blog
>
December, 2006
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
Mike Stall's .NET Debugging Blog
Fake attach event ordering
Posted
over 7 years ago
by
Mike Stall - MSFT
5
Comments
When you attach to a managed debuggee (via ICorDebug::DebugActiveProcess), ICorDebug generates a set of fake events designed to bring the debugger up to the current state. The motivation is that it pumps the debugger just as if the debugger was always...
Mike Stall's .NET Debugging Blog
C# app to count #ifdef usage
Posted
over 7 years ago
by
Mike Stall - MSFT
3
Comments
Here's a little tool I wrote to count #ifdef usage in a project. It provides a summary of the #define name and frequency; plus a detailed XML file of each location that the #define occurred at. For example, when applied to this sample file (in directory...
Mike Stall's .NET Debugging Blog
Embed Macros in Help?
Posted
over 7 years ago
by
Mike Stall - MSFT
0
Comments
Having to meticulously follow detailed instructions is just an accident waiting to happen. Instead of application Help giving such instructions, I wish the Help would just expose Macros to do it for me. I was just using the Help on Application X. I...
Mike Stall's .NET Debugging Blog
Measuring language complexity: Do you need a debugger?
Posted
over 7 years ago
by
Mike Stall - MSFT
2
Comments
When people are asking for a debugger for language X, practically it means that the usage of language X has gotten sufficiently complicated that mere inspection is insufficient for diagnosing problems. I alluded to this when I said that XML is code...
Mike Stall's .NET Debugging Blog
Your feedback: How many types do you ref.emit into a module?
Posted
over 7 years ago
by
Mike Stall - MSFT
5
Comments
I'm looking for feedback about Ref.Emit usage patterns. When using Ref.Emit , how many types do you generally emit into a single module? Do your scenarios generally use AssemblyBuilderAccess .RunAndSave/.Run? In other words, are you emitting...
Mike Stall's .NET Debugging Blog
Interview Tip: Writing test cases
Posted
over 7 years ago
by
Mike Stall - MSFT
6
Comments
If during a dev interview, you're asked to write a set of test cases for some function you wrote, be sure to have test cases that reach every basic block. In other words, make sure your test cases at least hit every line of code you wrote. For example...
Mike Stall's .NET Debugging Blog
What I'm reading now: "C++ Template Metaprogramming"
Posted
over 7 years ago
by
Mike Stall - MSFT
4
Comments
I'm currently reading " C++ Template Metaprogramming ". It's off to a great start. The basic idea (so far) is that: You can write entire algorithms / programs in C++ templates, which are then executed as the compiler instantiates the template...
Mike Stall's .NET Debugging Blog
Patrick Dussud is blogging!
Posted
over 7 years ago
by
Mike Stall - MSFT
0
Comments
Patrick Dussud , lead architect of the CLR, is blogging (as other CLR members are already pointing out). Patrick has an amazing insight and understanding far beyond myself and many others. (If memory serves, Chris Brumme used to report to Patrick). If...
Mike Stall's .NET Debugging Blog
Random comments about Sytem.Convert class
Posted
over 7 years ago
by
Mike Stall - MSFT
7
Comments
The System.Convert class is a neat little class in the BCL (mscorlib) for converting between types. vs. IConvertible : The Convert class is tightly coupled with the IConvertible interface. Convert.ChangeType is just a convenience method to delegate...
Page 1 of 1 (9 items)