void Nish(char* szBlog);

Nish’s thoughts on MFC, C++/CLI and .NET

void Nish(char* szBlog); header image 4

Entries from June 2006

My book’s front cover

June 9th, 2006 · 16 Comments

Here’s a preview image of my book’s cover. Most of the Manning book covers use images from the 1805 edition of Sylvain MarŽchal’s four-volume compendium of regional dress customs. You can read more on that here. And no, that’s not the Pope! That’s what my wife jokingly asked me when she saw the cover.

[Read more →]

Tags: C++/CLI · General

You *can* delete a NULL pointer!

June 7th, 2006 · 7 Comments

This is an often asked question in newsgroups and forums. A lot of people do this :- if(p) delete p; The assumption is that, if they do not check for NULL, delete will result in a crash or in random behavior. This is not correct. C++ guarantees that a delete will do nothing if the [...]

[Read more →]

Tags: C++ · C++/CLI