Skip to content

M_Ekstrand_Collections_Generic_TwoKeyDictionary_3_Remove

Fred Ekstrand edited this page Aug 4, 2020 · 2 revisions

TwoKeyDictionary(TKeyA, TKeyB, TValue).Remove Method (TwoKeyValueTriple(TKeyA, TKeyB, TValue))

Removes a A-key, B-key and value from the dictionary.

Namespace: Ekstrand.Collections.Generic
Assembly: TwoKeyDictionary (in TwoKeyDictionary.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

C#

public bool Remove(
	TwoKeyValueTriple<TKeyA, TKeyB, TValue> item
)

VB

Public Function Remove ( 
	item As TwoKeyValueTriple(Of TKeyA, TKeyB, TValue)
) As Boolean

C++

public:
virtual bool Remove(
	TwoKeyValueTriple<TKeyA, TKeyB, TValue> item
) sealed

F#

abstract Remove : 
        item : TwoKeyValueTriple<'TKeyA, 'TKeyB, 'TValue> -> bool 
override Remove : 
        item : TwoKeyValueTriple<'TKeyA, 'TKeyB, 'TValue> -> bool 

Parameters

 

item
Type: Ekstrand.Collections.Generic.TwoKeyValueTriple(TKeyA, TKeyB, TValue)
The TwoKeyValueTriple<TKeyA,TKeyB,TValue> structure representing the key and value to remove from the Dictionary<TKeyA,TKeyB,TValue>.

Return Value

Type: Boolean
true if the key and value represented by TwoKeyValueTriple is successfully found and removed; otherwise, false. This method returns false if keyValuePair is not found in the ICollection.

Implements

ICollection(T).Remove(T)

See Also

Reference

TwoKeyDictionary(TKeyA, TKeyB, TValue) Class
Remove Overload
Ekstrand.Collections.Generic Namespace

Clone this wiki locally