BaseDictionary()

BaseDictionary::BaseDictionary() constructor

Creates empty data structure.

System::Collections::Generic::BaseDictionary<Map>::BaseDictionary()

BaseDictionary::BaseDictionary(int, const Args&…) constructor

Forwarding constructor to push arguments into underlying map constructor.

template<class...> System::Collections::Generic::BaseDictionary<Map>::BaseDictionary(int, const Args &... args)

Template parameters

ParameterDescription
ArgsTypes of arguments to forward to map.

Arguments

ParameterTypeDescription
argsintArguments to forward to underlying map.

BaseDictionary::BaseDictionary(BaseType *, const Args&…) constructor

Copying constructor.

template<class...> System::Collections::Generic::BaseDictionary<Map>::BaseDictionary(BaseType *src, const Args &... args)

Template parameters

ParameterDescription
ArgsTypes of map constructor arguments.

Arguments

ParameterTypeDescription
srcBaseType *Object to copy data from.
argsconst Args&…Arguments to forward to underlying map constructor.

BaseDictionary::BaseDictionary(BaseType *) constructor

Copying constructor.

System::Collections::Generic::BaseDictionary<Map>::BaseDictionary(BaseType *src)

Arguments

ParameterTypeDescription
srcBaseType *Object to copy data from.

See Also