Summary
public bool TryParse(string content)
Attempts to parse the given content as a configuration file.
Returns
trueif the parse succeeds,falseotherwise
Parameters
- string content
Summary
public bool TryParse(string content, out MyIniParseResult result)
Attempts to parse the given content as a configuration file.
Returns
trueif the parse succeeds,falseotherwise
Parameters
- string content
- MyIniParseResult result
Summary
public bool TryParse(string content, string section, out MyIniParseResult result)
Attempts to parse the given content as a configuration file. OBSERVE: Use only for read-only operations. If you parse a single section and run ToString() , you will only get the parsed section, the rest will be discarded.
Returns
trueif the parse succeeds,falseotherwise
Parameters
- string content
- string section
- MyIniParseResult result
Summary
public bool TryParse(string content, string section)
Attempts to parse the given content as a configuration file. OBSERVE: Use only for read-only operations. If you parse a single section and run ToString() , you will only get the parsed section, the rest will be discarded.
Returns
trueif the parse succeeds,falseotherwise