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.
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.