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.
2.1m questions
2.1m answers
60 comments
57.0k users