Like their native equivalents, default member accessibility of a ref class or value class is private and default member accessibility of a ref struct or value struct is public.
A value type cannot act as a base type.
When a reference type inherits from another reference type, virtual functions in the base class must explicitly be overridden (with override) or hidden (with new (new slot in vtable)). The derived class functions must also be explicitly marked as virtual.
For more information on classes and structs, see
For information on interfaces, see interface class.
You can detect at compile time if a type is a CLR type with __is_ref_class (type), __is_value_class (type), or __is_simple_value_class (type). For more information, see Compiler Support for Type Traits.
In the development environment, you can get F1 help on these keywords by highlighting the keyword, (ref class, for example) and pressing F1.