WRAPPER_API static IdentifierCollection* CreateIdentifierCollection()
The CreateIdentifierCollection constructor creates a new instance of the IdentifierCollection class. The newly created IdentifierCollection will not contain any identifiers.
void IdentifierCollection_CreateIdentifierCollection()
{
GEOCALCPBW_NAMESPACE::IdentifierCollection * idc = GEOCALCPBW_NAMESPACE::IdentifierCollection::CreateIdentifierCollection();
idc->Add(L"GC", L"MyID");
GEOCALCPBW_NAMESPACE::Disposal::Dispose(idc);
}