IniKeyCollectionAdd(String, String, String) Method
Namespace: DevCase.Core.Application.UserSettingsAssembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
public void Add(
string name,
string value,
string comment = ""
)
Public Sub Add (
name As String,
value As String,
Optional comment As String = ""
)
Dim instance As IniKeyCollection
Dim name As String
Dim value As String
Dim comment As String
instance.Add(name, value, comment)
public:
void Add(
String^ name,
String^ value,
String^ comment = L""
)
member Add :
name : string *
value : string *
?comment : string
(* Defaults:
let _comment = defaultArg comment ""
*)
-> unit
No code example is currently available or this language may not be supported.
Parameters
- name String
-
The name of the key to add.
- value String
-
The value.
- comment String (Optional)
-
An optional comment-line.
ArgumentException
|
Key already exists.;section
|