IniFile.RenameKey Method

Furcadia Framework

IniFileRenameKey Method

Furcadia Framework For Third Party Programs
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 42
Syntax

public bool RenameKey(
	string sSection,
	string sKey,
	string sNewKey
)
Public Function RenameKey ( 
	sSection As String,
	sKey As String,
	sNewKey As String
) As Boolean

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)
public:
bool RenameKey(
	String^ sSection, 
	String^ sKey, 
	String^ sNewKey
)
member RenameKey : 
        sSection : string * 
        sKey : string * 
        sNewKey : string -> bool 

Parameters

sSection
Type: SystemString
The s section.
sKey
Type: SystemString
The s key.
sNewKey
Type: SystemString
The s new key.

Return Value

Type: Boolean

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

See Also

Reference