C++
0 words.
2 entries. 342 words.
2008-04
-
C++/CLI Properties.
2008-04-11.
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.
- Technology
2008-10
-
Moving C++/CLI Properties Out Of Headers.
2008-10-18.
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.
- Technology