Set a settings value in memory.

Namespace:  RedCritterV1
Assembly:  RedCritterV1 (in RedCritterV1.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

      
 C#  Visual Basic 
public void SetSetting(
	string name,
	string value
)
Public Sub SetSetting ( _
	name As String, _
	value As String _
)

Parameters

name
String
The name of the setting.
value
String
The value to save.

Remarks

In order to persist setting changes you should call SaveSettings(). Typically your App will make changes to one or more settings then call the SaveSettings() method to do the update.

See Also