Example #1
0
 public static SettingBase Load(SettingBase defaultSettings, LocationType locationType)
 {
     return(Load(defaultSettings, locationType, defaultSettings.DefaultName()));
 }
Example #2
0
        public static SettingBase LoadFromPath(SettingBase defaultSettings, string path)
        {
            string filename = Path.Combine(path, defaultSettings.DefaultName());

            return(Load(defaultSettings, filename));
        }