Sep 2, 2009 · 3 min read
Senthil has left us thrilled in his new post, and also inspired me to write about the topic.
Jul 1, 2009 · 2 min read
Let us read some code:-
int SomeMethod() { int num = 1; try { num = 5; return num; } finally { num += 5; } } What is the return value of SomeMethod?
Apr 25, 2009 · 9 min read
Article co-authored with Sanjeev, and published on CodeProject
PROBLEM Every application logs a whole bunch of diagnostic messages, primarily for (production) debugging, to the console or the standard error device or to files.
Apr 10, 2009 · 2 min read
This is a simple array like class for C++, which can be used as a safe wrapper for accessing a block of memory pointed by a bare pointer.
Apr 8, 2009 · 3 min read
This is about a killer bug identified by our chief software engineer in our application.
Mar 18, 2009 · 2 min read
I would not want to write chunks of code to spawns threads and perform many of my background tasks such as firing events, UI update etc.
Feb 5, 2009 · 2 min read
Remember the Casting Restrictions we discussed a while back, let us settle that now.
Jan 25, 2009 · 2 min read
Thanks to the internet. If nobody else bothers or understands what loss of data means, you can shout it aloud here.
Nov 22, 2008 · 2 min read
We all know that the runtime can detect the actual type of a System.
Sep 26, 2008 · 2 min read
Let us take a look at the following piece of code:-