|
IniFileRenameSection Method
|
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 59
Syntax public bool RenameSection(
string sSection,
string sNewSection
)
Public Function RenameSection (
sSection As String,
sNewSection As String
) As Boolean
Dim instance As IniFile
Dim sSection As String
Dim sNewSection As String
Dim returnValue As Boolean
returnValue = instance.RenameSection(sSection,
sNewSection)
public:
bool RenameSection(
String^ sSection,
String^ sNewSection
)
member RenameSection :
sSection : string *
sNewSection : string -> bool
Parameters
- sSection
- Type: SystemString
The s section. - sNewSection
- Type: SystemString
The s new section.
Return Value
Type:
Boolean[Missing <returns> documentation for "M:Furcadia.IO.IniFile.RenameSection(System.String,System.String)"]
See Also