Skip to content

private

The private is an access modifier keyword used for limiting the member symbol visibility of classes, interfaces, and namespaces.

Syntax

private:
: private

Example Code

class object : private super
{
private:
};
interface object : private super
{
private:
};
namespace module : private super_module
{
private:
};