Matthew ".NET 247" Reynolds
Matthew Reynolds... software development consultant, author, speaker and trainer
-
Thoughts for the day - SpamArrest and "quality as a control variable"
Couple of thoughts spring to mind on this Monday, which is a “public” holiday over here in the UK (OK, it's a “bank” holiday to us Brits)...
-
Lutz's CommandBar for .NET
Lutz may be famous for Reflector, but for those of you needing a menu and toolbar library, his CommandBar for .NET is worth a look.
-
Mind mapping
I've been meaning to blog for a while on mind mapping, but I see that Tim Sneath has blogged about it here.
-
Hosting Remoting objects in IIS
I've long been an advocate of hosting Remoting objects in an application's own Windows Service. However, I always knew that there was this "other way" of doing it in IIS (some would argue that I have this the wrong way round!). A new MSDN article ".NET Remoting Architectural Assessment" has plenty to say on Remoting best practice.
-
Shadow copy cache "causes" weird debugging problems
(I am trying not to rant and rave about this - this just causes me a serious headache!)
-
[MSDN link] Video of Profiling Managed Code with the CLR Profiler
Here it is:
http://msdn.microsoft.com/msdntv/episode.aspx?xml=episodes/en/20030729CLRGN/manifest.xml -
RSS feed of Microsoft Downloads
NewsIsFree appears to have an RSS feed of the last ten items posted to Microsoft Downloads...
http://www.newsisfree.com/sources/info/7864/?USERLANG=en -
Showing non-user code in Call Stack
I've run into a couple of weird Windows Forms problems today. In VS .NET 2002, when I used to bring up the call stack on an event handler (”OnWhatever...”), I used to see all of the Framework calls that got me from the last call in my own code to the call I'm actually debugging. Although you can't see the code behind these calls (they're compiled and you have no debug info), they're often useful for getting a hint about what's happening in the Framework assembly by reading the method names.
-
Preserving the cursor when putting up an hour glass - Win32 best practice in a .NET world
Today's quickie tip comes from the world of Win32 best practice.
-
"virtual" method call performance
After my post yesterday on the C# Coding Standards document, I received a comment from Adam with relation to the performance of the calls. There's a common misconception about how virtual should be used, and I wanted to address the perf issue here. (Comments are here and here.)