IniFile.SectionToKeyValuePair Method

IniFileIO

IniFileSectionToKeyValuePair Method

IniFileIO Documentation
Returns an array of key value pairs representing each IniFileKey in the provided section.

This method supports multiple IniFileKeys with the same Name value.

Namespace:  IniFileIO
Assembly:  IniFileIO (in IniFileIO.dll) Version: 1.4.0.6028 (1.4.0.06028)
Syntax

public static KeyValuePair<string, string>[] SectionToKeyValuePair(
	IniFileSection section
)
Public Shared Function SectionToKeyValuePair ( 
	section As IniFileSection
) As KeyValuePair(Of String, String)()
public:
static array<KeyValuePair<String^, String^>>^ SectionToKeyValuePair(
	IniFileSection section
)
static member SectionToKeyValuePair : 
        section : IniFileSection -> KeyValuePair<string, string>[] 

Parameters

section
Type: IniFileIOIniFileSection
Section to build to the key value pairs from.

Return Value

Type: KeyValuePairString, String
Key value pair array with each Keys's Name as the Key and Value as the Value.
See Also

Reference