C++

Endgame Viable 0 words

2 entries. 342 words.

April, 2008

  • C++/CLI Properties. 2008-04-11 12:11 AM.
    • Technology
    • thomaskrehbiel.com

    Properties in C++/CLI are great and all, but, um, what if I want to put my class implementation in a different file from the class definition? You know, like, oh, every C++ program ever made in the entire history of the world. Microsoft even encourages the separation of definition from implementation by creating a .cpp and a .h file when you make the new managed class. 178 words.

October, 2008

  • Moving C++/CLI Properties Out Of Headers. 2008-10-18 8:54 PM.
    • Technology
    • thomaskrehbiel.com

    A while back I railed against C++/CLI for its nonsensical inability to separate property implementations from the header file. Well, it turns out you can do it – it’s just not widely reported. Almost every example of a C++/CLI property shows it implemented in the header file. 164 words.