IniKey(String, String, String) Constructor
Initializes a new instance of the
IniKey class.
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 IniKey(
string name,
string value,
string comment = ""
)
Public Sub New (
name As String,
value As String,
Optional comment As String = ""
)
Dim name As String
Dim value As String
Dim comment As String
Dim instance As New IniKey(name, value,
comment)
public:
IniKey(
String^ name,
String^ value,
String^ comment = L""
)
new :
name : string *
value : string *
?comment : string
(* Defaults:
let _comment = defaultArg comment ""
*)
-> IniKey
No code example is currently available or this language may not be supported.
Parameters
- name String
-
The key name.
- value String
-
The key value.
- comment String (Optional)
-
The key commentary-line.
ArgumentNullException
|
name
|
ArgumentException
|
The key name cannot contain the ';' symbol because it identifies a commentary line.,name
or
The key name cannot contain the '=' symbol because it delimits the name from the value.,name
|