|
IniFileLoad Method
|
This stuff is still in the planning stages. Any questions or Comments are welcome. [This is preliminary documentation and is subject to change.]
Loads the Reads the data in the ini file into the IniFile object
Namespace:
Furcadia.IO
Assembly:
FurcadiaLib (in FurcadiaLib.dll) Version: 2.19.PreAlpha 59
Syntax public void Load(
string sFileName,
bool bMerge = false
)
Public Sub Load (
sFileName As String,
Optional bMerge As Boolean = false
)
Dim instance As IniFile
Dim sFileName As String
Dim bMerge As Boolean
instance.Load(sFileName, bMerge)
public:
void Load(
String^ sFileName,
bool bMerge = false
)
member Load :
sFileName : string *
?bMerge : bool
(* Defaults:
let _bMerge = defaultArg bMerge false
*)
-> unit
Parameters
- sFileName
- Type: SystemString
Name of the s file. - bMerge (Optional)
- Type: SystemBoolean
if set to fase, remove all sections.
See Also