RemoteTech.RTSettings.ReloadSettings C# (CSharp) Méthode

ReloadSettings() public static méthode

Replace the given settings with a new Settings object of the given setting preset, and save it
public static ReloadSettings ( Settings previousSettings, string presetCfgUrl ) : void
previousSettings Settings
presetCfgUrl string
Résultat void
        public static void ReloadSettings(Settings previousSettings, string presetCfgUrl)
        {
            _instance = Settings.LoadPreset(previousSettings, presetCfgUrl);
            _instance.Save();
        }
RTSettings