Visual C++ .NET/Class/sealed — различия между версиями

Материал из .Net Framework эксперт
Перейти к: навигация, поиск
м (1 версия)
 
(нет различий)

Версия 18:31, 26 мая 2010

sealed class

<source lang="csharp">

  1. include "stdafx.h"

ref class C sealed { }; //ref class B : C // Error: cannot inherit from a sealed class. //{ //};

 </source>