Question

This is more of an academic question... but can ConcurrentDictionary.TryAdd fail? And if so in what cases and why?

Was it helpful?

Solution

Yes it can, here are the conditions (from msdn):

  • ArgumentNullException - when the key is null reference
  • OverflowException - when max number of elements was reached
  • It returns false if an element with the same key already exist

Just to reiterate, this is nothing to do with concurrency. If you worry about two threads inserting an item at the same time then the following can happen:

  • Both inserts work fine, if the keys are different.
  • One insert works fine and returns true, the other insert fails (with no exception) and returns false. This happens if two threads try to insert an item with the same key and basically only one would win and the other would lose.

OTHER TIPS

Sure it can. If the key already exists, the method will return false.

Ref: http://msdn.microsoft.com/en-us/library/dd267291.aspx

Return Value Type: System.Boolean true if the key/value pair was added to the ConcurrentDictionary successfully. If the key already exists, this method returns false.

It will fail when the key already exists in the dictionary.

If the value can't be added because you run out memory, you will get an exception instead.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top