private void LoadProperties(PropertyLoader propertyLoader, MutableIntSet additionalPropertiesToLoad, EntityType type) { _hasLoadedAdditionalProperties = true; propertyLoader.LoadProperties(_entityId, type, additionalPropertiesToLoad, this); // loadProperties removes loaded properties from the input set, so the remaining ones were not on the node //JAVA TO C# CONVERTER WARNING: The original Java variable was marked 'final': //ORIGINAL LINE: final org.eclipse.collections.api.iterator.IntIterator propertiesWithNoValue = additionalPropertiesToLoad.intIterator(); IntIterator propertiesWithNoValue = additionalPropertiesToLoad.intIterator(); while (propertiesWithNoValue.hasNext()) { Put(propertiesWithNoValue.next(), _noValue); } }