HelperFunctionsSettingsManagerUpdateSetting Method |
This method will let you update a setting from the Settings file.
If you have not called InitializeSettingsFile() a generic one called "Settings.dat" will be created or opened.
Namespace:
AHL
Assembly:
AHL (in AHL.dll) Version: 1.0.0.0 (1.0.0.0)
Syntaxpublic static void UpdateSetting(
string settingName,
string settingValue
)
Public Shared Sub UpdateSetting (
settingName As String,
settingValue As String
)
public:
static void UpdateSetting(
String^ settingName,
String^ settingValue
)
static member UpdateSetting :
settingName : string *
settingValue : string -> unit
Parameters
- settingName
- Type: SystemString
This is the key you wish to update from the settings. - settingValue
- Type: SystemString
This is the new value you wish to set your key settings.
See Also