internal void UpdateConfigValuesBasedOn(ConfigWrapper tmpConfigWrapper) { foreach (ConfigPropertyObject tmpPropertyObject in tmpConfigWrapper.ConfigValues.Values) { ConfigPropertyObject propertyObject; if (ConfigValues.TryGetValue(tmpPropertyObject.Name, out propertyObject)) { propertyObject.Value = tmpPropertyObject.Value; } } }