IniFile.AddSection Method

FFF3PP

IniFileAddSection Method

This stuff is still in the planning stages. Any questions or Comments are welcome.

[This is preliminary documentation and is subject to change.]

Adds a section to the IniFile object, returns a IniSection object to the new or existing object

Namespace:  Furcadia.IO
Assembly:  FurcadiaLib (in FurcadiaLib.dll) Version: 2.19.PreAlpha 44
Syntax
public IniFileIniSection AddSection(
	string sSection
)
Public Function AddSection ( 
	sSection As String
) As IniFileIniSection

Dim instance As IniFile
Dim sSection As String
Dim returnValue As IniFileIniSection

returnValue = instance.AddSection(sSection)
public:
IniFileIniSection^ AddSection(
	String^ sSection
)
member AddSection : 
        sSection : string -> IniFileIniSection 

Parameters

sSection
Type: SystemString
The s section.

Return Value

Type: IniFileIniSection

[Missing <returns> documentation for "M:Furcadia.IO.IniFile.AddSection(System.String)"]

See Also