WRAPPER_API bool Remove(const BmgChar *issuer)
The Remove method removes the specified identifier from the collection. If the specified identifier does not exist, a GeoCalcException will be thrown with an ErrorCode specifying ParameterNotFound.
void IdentifierCollection_Remove(GEOCALCPBW_NAMESPACE::IdentifierCollection & idc)
{
if(idc.Exists(L"GC"))
{
idc.Remove(L"GC");
}
}