Public Function GetSectionValues( _ ByVal sectionName As String, _ ByVal filePath As String _ ) As Dictionary(Of String,String)
Dim instance As IniReaderWriter Dim sectionName As String Dim filePath As String Dim value As Dictionary(Of String,String) value = instance.GetSectionValues(sectionName, filePath)
public Dictionary<string,string> GetSectionValues( string sectionName, string filePath )
public: Dictionary<String^,String^>^ GetSectionValues( String^ sectionName, String^ filePath )
Parameters
- sectionName
- The section name. Use GLOBAL for the global section.
- filePath
- The path to the INI file
Return Value
A list of the settings and their values