Method Remove
Remove(TAlternateLeft, TRight)
Removes an association from the map between the specified alternate left and alternate right value if they currently map to each other.
Declaration
public bool Remove(TAlternateLeft leftValue, TRight rightValue)
Parameters
Type | Name | Description |
---|---|---|
TAlternateLeft | leftValue | |
TRight | rightValue |
Returns
Type | Description |
---|---|
bool |
Remarks
If the left and right values do not map to each other then no changes are made to the map and the removal does not succeed.
Remove(TAlternateLeft, TRight, out TLeft)
Removes an association from the map between the specified alternate left and alternate right value if they currently map to each other.
Declaration
public bool Remove(TAlternateLeft leftValue, TRight rightValue, out TLeft actualLeftValue)
Parameters
Type | Name | Description |
---|---|---|
TAlternateLeft | leftValue | |
TRight | rightValue | |
TLeft | actualLeftValue |
Returns
Type | Description |
---|---|
bool |
Remarks
If the left and right values do not map to each other then no changes are made to the map and the removal does not succeed.