-
Notifications
You must be signed in to change notification settings - Fork 0
M_Ekstrand_Collections_Generic_TwoKeyDictionary_3_Add_2
Fred Ekstrand edited this page Aug 4, 2020
·
2 revisions
Adds the specified key and value to the dictionary.
Namespace: Ekstrand.Collections.Generic
Assembly: TwoKeyDictionary (in TwoKeyDictionary.dll) Version: 1.0.0.0 (1.0.0.0)
C#
public void Add(
TKeyA keyA,
TKeyB keyB,
TValue value
)VB
Public Sub Add (
keyA As TKeyA,
keyB As TKeyB,
value As TValue
)C++
public:
virtual void Add(
TKeyA keyA,
TKeyB keyB,
TValue value
) sealedF#
abstract Add :
keyA : 'TKeyA *
keyB : 'TKeyB *
value : 'TValue -> unit
override Add :
keyA : 'TKeyA *
keyB : 'TKeyB *
value : 'TValue -> unit
- keyA
- Type: TKeyA
The A-key of the element to add. - keyB
- Type: TKeyB
The B-key of the element to add. - value
- Type: TValue
The value of the element to add. The value can be null for reference types.
TwoKeyDictionary(TKeyA, TKeyB, TValue) Class
Add Overload
Ekstrand.Collections.Generic Namespace
An Ekstrand Class Library
Copyright © 2019 Fred Ekstrand Jr
Send comments on this topic to fredekstrandGithub@gmail.com
Document created by: Sandcastle Help File Builder
- Namespaces
- Ekstrand.Collections Namespace
-
Ekstrand.Collections.Generic Namespace
- IReadOnlyCollection(T) Interface
- TwoKeyDictionary(TKeyA, TKeyB, TValue) Class
- TwoKeyDictionary(TKeyA, TKeyB, TValue).Enumerator Structure
- TwoKeyDictionary(TKeyA, TKeyB, TValue).KeyACollection Class
- TwoKeyDictionary(TKeyA, TKeyB, TValue).KeyACollection.Enumerator Structure
- TwoKeyDictionary(TKeyA, TKeyB, TValue).KeyBCollection Class
- TwoKeyDictionary(TKeyA, TKeyB, TValue).KeyBCollection.Enumerator Structure
- TwoKeyDictionary(TKeyA, TKeyB, TValue).ValueCollection Class
- TwoKeyDictionary(TKeyA, TKeyB, TValue).ValueCollection.Enumerator Structure
- TwoKeyValueTriple(TKeyA, TKeyB, TValue) Structure