void Nish(char* szBlog);

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

void Nish(char* szBlog); header image 4

Entries from December 2004

Bye bye 2004

December 31st, 2004 · 8 Comments

It was quite an eventful year for me and there were various changes in my personal life as well as my professional life. The non-personal high-point this year was the MVP summit in Redmond – it’s probably the best way to see the Microsoft campus (at least a small part of it) without getting employed [...]

[Read more →]

Tags: General

String interning, pointers and a dangerous side-effect

December 6th, 2004 · 13 Comments

The CLR interns managed strings – this means that if the same string is used multiple times, all of them refer to the same instance of the string. This is possible because System::String is immutable – so the moment you change one of those strings, you are actually changing the reference which now refers to [...]

[Read more →]

Tags: C++/CLI · CLR/.NET BCL

The spell-checker conundrum

December 3rd, 2004 · 9 Comments

I used to be an excellent speller till I started using word processors and editors with built-in spell checking. Funnily, I never realized how profoundly my spelling abilities had deteriorated until very recently, when I had to write a letter by hand. I was horribly shocked to find that I wasn’t half-sure of the proper [...]

[Read more →]

Tags: General

Pinning Pointers article

December 2nd, 2004 · No Comments

Close on the heels of my article on interior pointers, I’ve written one on pinning pointers :- Guide to using Pinning Pointers

[Read more →]

Tags: General