public static SettingBase Load(SettingBase defaultSettings, LocationType locationType) { return(Load(defaultSettings, locationType, defaultSettings.DefaultName())); }
public static SettingBase LoadFromPath(SettingBase defaultSettings, string path) { string fileName = Path.Combine(path, defaultSettings.DefaultName()); return(Load(defaultSettings, fileName)); }