IniFile.GetOutputString Method (Boolean)

IniFileIO

IniFileGetOutputString Method (Boolean)

IniFileIO Documentation
Returns the current object content as a single string.

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

public string GetOutputString(
	bool preserveOrders = false
)
Public Function GetOutputString ( 
	Optional preserveOrders As Boolean = false
) As String
public:
String^ GetOutputString(
	bool preserveOrders = false
)
member GetOutputString : 
        ?preserveOrders : bool 
(* Defaults:
        let _preserveOrders = defaultArg preserveOrders false
*)
-> string 

Parameters

preserveOrders (Optional)
Type: SystemBoolean
Determines if the section and key order settings should be honored. On large ini files, this may incur a performance hit.

Return Value

Type: String
String containing the entire Ini contents.
Remarks

The output of this function is the same as what is written in SaveFile(Boolean, Boolean).
See Also

Reference