IniFile.SetKeyValue Method

Furcadia Framework

IniFileSetKeyValue 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.]

Sets a KeyValuePair in a certain section

Namespace:  Furcadia.IO
Assembly:  FurcadiaLib (in FurcadiaLib.dll) Version: 2.19.PreAlpha 42
Syntax

public bool SetKeyValue(
	string sSection,
	string sKey,
	string sValue
)
Public Function SetKeyValue ( 
	sSection As String,
	sKey As String,
	sValue As String
) As Boolean

Dim instance As IniFile
Dim sSection As String
Dim sKey As String
Dim sValue As String
Dim returnValue As Boolean

returnValue = instance.SetKeyValue(sSection, 
	sKey, sValue)
public:
bool SetKeyValue(
	String^ sSection, 
	String^ sKey, 
	String^ sValue
)
member SetKeyValue : 
        sSection : string * 
        sKey : string * 
        sValue : string -> bool 

Parameters

sSection
Type: SystemString
The s section.
sKey
Type: SystemString
The s key.
sValue
Type: SystemString
The s value.

Return Value

Type: Boolean

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

See Also

Reference