M_Furcadia_IO_IniFile_RenameKey - 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 key returns true on success, false if the key didn't exist or there was another section with the same sNewKey
Namespace: Furcadia.IO
Assembly: FurcadiaLib (in FurcadiaLib.dll) Version: 2.19.PreAlpha 43
C#
public bool RenameKey(
string sSection,
string sKey,
string sNewKey
)
VB
Public Function RenameKey (
sSection As String,
sKey As String,
sNewKey As String
) As Boolean
VB Usage
Dim instance As IniFile
Dim sSection As String
Dim sKey As String
Dim sNewKey As String
Dim returnValue As Boolean
returnValue = instance.RenameKey(sSection,
sKey, sNewKey)
C++
public:
bool RenameKey(
String^ sSection,
String^ sKey,
String^ sNewKey
)
F#
member RenameKey :
sSection : string *
sKey : string *
sNewKey : string -> bool
- sSection
- Type: System.String
The s section. - sKey
- Type: System.String
The s key. - sNewKey
- Type: System.String
The s new key.
Type: Boolean
[Missing documentation for "M:Furcadia.IO.IniFile.RenameKey(System.String,System.String,System.String)"]