Public Function SaveSetting( _ ByVal sectionName As String, _ ByVal settingName As String, _ ByVal settingValue As String, _ ByVal filePath As String _ ) As Boolean
Dim instance As IniReaderWriter Dim sectionName As String Dim settingName As String Dim settingValue As String Dim filePath As String Dim value As Boolean value = instance.SaveSetting(sectionName, settingName, settingValue, filePath)
public bool SaveSetting( string sectionName, string settingName, string settingValue, string filePath )
public: bool SaveSetting( String^ sectionName, String^ settingName, String^ settingValue, String^ filePath )
Parameters
- sectionName
- The section name. Use GLOBAL for the global section.
- settingName
- The setting name
- settingValue
- The value to set
- filePath
- The path to the INI file
Return Value
True if it was saved successfully