M_Furcadia_IO_IniFile_RenameSection - StarShip-Avalon-Projects/FurcadiaFramework GitHub Wiki
This stuff is still in the planning stages. Any questions or Comments are welcome. [This is preliminary documentation and is subject to change.]
Renames an existing section returns true on success, false if the section didn't exist or there was another section with the same sNewSection
Namespace: Furcadia.IO
Assembly: FurcadiaLib (in FurcadiaLib.dll) Version: 2.19.PreAlpha 43
C#
public bool RenameSection(
string sSection,
string sNewSection
)
VB
Public Function RenameSection (
sSection As String,
sNewSection As String
) As Boolean
VB Usage
Dim instance As IniFile
Dim sSection As String
Dim sNewSection As String
Dim returnValue As Boolean
returnValue = instance.RenameSection(sSection,
sNewSection)
C++
public:
bool RenameSection(
String^ sSection,
String^ sNewSection
)
F#
member RenameSection :
sSection : string *
sNewSection : string -> bool
- sSection
- Type: System.String
The s section. - sNewSection
- Type: System.String
The s new section.
Type: Boolean
[Missing documentation for "M:Furcadia.IO.IniFile.RenameSection(System.String,System.String)"]