SimpleIniFileAsText Method

Return ini file data as reparseable text. Normally only changes and stuff from the top returned.

Definition

Namespace: Karamba.Utilities
Assembly: KarambaCommon (in KarambaCommon.dll) Version: 3.0.8.0+eb23a7103f0eca0b6d808121e15fec6899194e15
C#
public string AsText(
	bool everything = false,
	bool woComments = false,
	bool wNotes = false,
	bool alsoHidden = false,
	HashSet<string> ignore = null
)

Parameters

everything  Boolean  (Optional)
return all entries.
woComments  Boolean  (Optional)

[Missing <param name="woComments"/> documentation for "M:Karamba.Utilities.SimpleIniFile.AsText(System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Collections.Generic.HashSet{System.String})"]

wNotes  Boolean  (Optional)

[Missing <param name="wNotes"/> documentation for "M:Karamba.Utilities.SimpleIniFile.AsText(System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Collections.Generic.HashSet{System.String})"]

alsoHidden  Boolean  (Optional)

[Missing <param name="alsoHidden"/> documentation for "M:Karamba.Utilities.SimpleIniFile.AsText(System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Collections.Generic.HashSet{System.String})"]

ignore  HashSetString  (Optional)

[Missing <param name="ignore"/> documentation for "M:Karamba.Utilities.SimpleIniFile.AsText(System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Collections.Generic.HashSet{System.String})"]

Return Value

String
new top file content.

See Also