August 11, 2011

Virtual Sealed Method in C++/CLI

example:
 virtual System::String^ DoSomething(...) sealed;
What does the sealed do here?
"sealed" on a function means that you can't override that method in a derived type.

No comments: