IniFileToKeyValuePair Method |
IniFileIO Documentation |
Returns an array of key value pairs by Name for the currently loaded IniFileSections.
The inner array of key value pairs is by IniFileKeyName for each IniFileSection.
This method supports multiple IniFileSections with the same Name value as well as a single IniFileSection which has 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 KeyValuePair<string, KeyValuePair<string, string>[]>[] ToKeyValuePair()
Public Function ToKeyValuePair As KeyValuePair(Of String, KeyValuePair(Of String, String)())()
public: array<KeyValuePair<String^, array<KeyValuePair<String^, String^>>^>>^ ToKeyValuePair()
member ToKeyValuePair : unit -> KeyValuePair<string, KeyValuePair<string, string>[]>[]
Return Value
Type: KeyValuePairString, KeyValuePairString, StringAn array of key value pairs with each IniFileSection's Name as the Key and SectionToKeyValuePair(IniFileSection) as the Value.
See Also