Public Function GetSetting( _ ByVal sectionName As String, _ ByVal settingName As String, _ ByVal filePath As String _ ) As String
Dim instance As IniReaderWriter Dim sectionName As String Dim settingName As String Dim filePath As String Dim value As String value = instance.GetSetting(sectionName, settingName, filePath)
public string GetSetting( string sectionName, string settingName, string filePath )
public: String^ GetSetting( String^ sectionName, String^ settingName, String^ filePath )
Parameters
- sectionName
- The section name. Use GLOBAL for the global section.
- settingName
- The setting name
- filePath
- The path to the INI File