Method Set
Set(TLeft, TRight)
Sets an association in the map between the specified left and right value, overriding any existing associations these values had.
Declaration
public void Set(TLeft leftValue, TRight rightValue)
Parameters
Type | Name | Description |
---|---|---|
TLeft | leftValue | |
TRight | rightValue |
Implements
Remarks
This method is functionally equivalent to removing any existing associations for the left and right values and then adding the new association, so it is guaranteed to succeed.