public void DeleteConfigValue(string configname) { ConfigValue configValue = ConfigValues.FirstOrDefault(t => t.ConfigName == configname); if (configValue != null) { ConfigValues.Remove(configValue); } SaveConfig(); }