Visual C++ .NET/Class/sealed

Материал из .Net Framework эксперт
Версия от 12:05, 26 мая 2010; Admin (обсуждение | вклад) (1 версия)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)
Перейти к: навигация, поиск

sealed class

 
#include "stdafx.h"
ref class C sealed
{
};
//ref class B : C  // Error: cannot inherit from a sealed class.
//{
//};