NameObjectCollectionAdd(String, Object) Method
Namespace: DevCase.Runtime.CollectionsAssembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
public virtual void Add(
string name,
Object value
)
Public Overridable Sub Add (
name As String,
value As Object
)
Dim instance As NameObjectCollection
Dim name As String
Dim value As Object
instance.Add(name, value)
public:
virtual void Add(
String^ name,
Object^ value
)
abstract Add :
name : string *
value : Object -> unit
override Add :
name : string *
value : Object -> unit
No code example is currently available or this language may not be supported.
Parameters
- name String
-
The String key of the entry to add. The key can be null.
- value Object
-
The String value of the entry to add. The value can be null.
NotSupportedException
|
The collection is read-only.
|