-
Notifications
You must be signed in to change notification settings - Fork 123
VRage.Game.ModAPI.Ingame.Utilities.MyIni.TryParse
This API documentation is out of date and no longer maintained.
Please visit the new documentation at: https://malforge.github.io/spaceengineers/pbapi
← Index ← Namespace Index ← MyIni
public bool TryParse(string content)Attempts to parse the given content as a configuration file.
trueif the parse succeeds,falseotherwise
- string content
public bool TryParse(string content, out MyIniParseResult result)Attempts to parse the given content as a configuration file.
trueif the parse succeeds,falseotherwise
- string content
- MyIniParseResult result
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.
trueif the parse succeeds,falseotherwise
- string content
- string section
- MyIniParseResult result
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.
trueif the parse succeeds,falseotherwise
Do you have questions, comments, suggestions for improvements? Is there something I can do better? Did I make a mistake? Please add an issue here, and prefix your issue title with Wiki. Thank you, your help will be very appreciated!