Method | Description | |
---|---|---|
ClearAllComments ( ) : void |
Deletes all comments in all sections and key values
|
|
Clone ( ) : object |
Creates a new object that is a copy of the current instance.
|
|
GetKey ( string key ) : string |
Retrieves a key using a single input string combining section and key name.
|
|
IniData ( ) : System |
Initializes an empty IniData instance.
|
|
IniData ( |
||
IniData ( SectionDataCollection sdc ) : System |
Initializes a new IniData instance using a previous SectionDataCollection.
|
|
Merge ( |
Merges the other iniData into this one by overwriting existing values. Comments get appended.
|
|
ToString ( ) : string | ||
ToString ( IIniDataFormatter formatter ) : string | ||
TryGetKey ( string key, string &value ) : bool |
Attempts to retrieve a key, using a single string combining section and key name.
|
|
this ( string sectionName ) : KeyDataCollection |
Gets the KeyDataCollection instance with the specified section name.
|
Method | Description | |
---|---|---|
MergeGlobal ( KeyDataCollection globals ) : void |
Merges the given global values into this globals by overwriting existing values.
|
|
MergeSection ( |
Merge the sections into this by overwriting this sections.
|
public GetKey ( string key ) : string | ||
key | string |
/// The section and key name to retrieve, separated by |
return | string |
public IniData ( SectionDataCollection sdc ) : System | ||
sdc | SectionDataCollection |
/// |
return | System |
public Merge ( |
||
toMergeIniData | /// IniData instance to merge into this. /// If it is null this operation does nothing. /// | |
return | void |
public ToString ( IIniDataFormatter formatter ) : string | ||
formatter | IIniDataFormatter | |
return | string |
public TryGetKey ( string key, string &value ) : bool | ||
key | string |
/// The section and key name to retrieve, separated by |
value | string | /// If true is returned, is set to the value retrieved. Otherwise, is set /// to an empty string. /// |
return | bool |
public this ( string sectionName ) : KeyDataCollection | ||
sectionName | string | |
return | KeyDataCollection |