Is the sealed command going to be in c++ 0x or is it only MS who use it?
sealed
C++0x has a special identifier final which means the same as sealed for classes in C++/CLI. It prevents a class from being derived from.
final
Read about sealed in Wikipedia
So the answer is basically: it already is but under a different name and has a different syntax.
1.4m articles
1.4m replys
5 comments
57.0k users