 | ContainerHelperExceptK, V, W(DictionaryK, V, DictionaryK, W) Method |
Creates a new dictionary containing all key/value pairs from
a whose keys are not contained in b.
Namespace: de.unika.ipd.grGen.libGrAssembly: libGr (in libGr.dll) Version: GrGen.NET 7.1
Syntaxpublic static Dictionary<K, V> Except<K, V, W>(
Dictionary<K, V> a,
Dictionary<K, W> b
)
Parameters
- a DictionaryK, V
- A dictionary.
- b DictionaryK, W
- Another dictionary of compatible key type to a.
Type Parameters
- K
- V
- W
Return Value
DictionaryK,
VA new dictionary containing all elements from
a,
which are not in
b.
See Also