IniFile Constructor

IniFileIO

IniFile Constructor

IniFileIO Documentation
Creates a new object with the read/write path set by fileName.

Namespace:  IniFileIO
Assembly:  IniFileIO (in IniFileIO.dll) Version: 1.4.0.6028 (1.4.0.06028)
Syntax

public IniFile(
	string fileName,
	bool keyNameWhitespaceLiteral = false,
	bool keyValueWhitespaceLiteral = false
)
Public Sub New ( 
	fileName As String,
	Optional keyNameWhitespaceLiteral As Boolean = false,
	Optional keyValueWhitespaceLiteral As Boolean = false
)
public:
IniFile(
	String^ fileName, 
	bool keyNameWhitespaceLiteral = false, 
	bool keyValueWhitespaceLiteral = false
)
new : 
        fileName : string * 
        ?keyNameWhitespaceLiteral : bool * 
        ?keyValueWhitespaceLiteral : bool 
(* Defaults:
        let _keyNameWhitespaceLiteral = defaultArg keyNameWhitespaceLiteral false
        let _keyValueWhitespaceLiteral = defaultArg keyValueWhitespaceLiteral false
*)
-> IniFile

Parameters

fileName
Type: SystemString
Target file name which will be read on instantiation and written to on save. This file does not need to exist at instantiation time.
keyNameWhitespaceLiteral (Optional)
Type: SystemBoolean
Sets the KeyNameWhitespaceLiteral property.
keyValueWhitespaceLiteral (Optional)
Type: SystemBoolean
Sets the KeyValueWhitespaceLiteral property.
Remarks

See Also

Reference