HelperFunctionsSettingsManagerAddSetting Method |
This method will Add a new setting to 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 AddSetting(
string settingName,
string settingValue
)
Public Shared Sub AddSetting (
settingName As String,
settingValue As String
)
public:
static void AddSetting(
String^ settingName,
String^ settingValue
)
static member AddSetting :
settingName : string *
settingValue : string -> unit
Parameters
- settingName
- Type: SystemString
This is the key of your setting. - settingValue
- Type: SystemString
This is the vauee of the setting.
See Also