Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Added code style
  • Loading branch information
pkulikov committed Oct 1, 2018
commit 5144b1fafecfdb43fa1729570c6c97b0a93230db
4 changes: 2 additions & 2 deletions xml/System.Collections.Concurrent/ConcurrentDictionary`2.xml
Original file line number Diff line number Diff line change
Expand Up @@ -450,7 +450,7 @@
<param name="addValueFactory">The function used to generate a value for an absent key</param>
<param name="updateValueFactory">The function used to generate a new value for an existing key based on the key's existing value</param>
<summary>Uses the specified functions to add a key/value pair to the <see cref="T:System.Collections.Concurrent.ConcurrentDictionary`2" /> if the key does not already exist, or to update a key/value pair in the <see cref="T:System.Collections.Concurrent.ConcurrentDictionary`2" /> if the key already exists.</summary>
<returns>The new value for the key. This will be either be the result of addValueFactory (if the key was absent) or the result of updateValueFactory (if the key was present).</returns>
<returns>The new value for the key. This will be either be the result of <c>addValueFactory</c> (if the key was absent) or the result of <c>updateValueFactory</c> (if the key was present).</returns>
<remarks>
<format type="text/markdown"><![CDATA[

Expand Down Expand Up @@ -504,7 +504,7 @@
<param name="addValue">The value to be added for an absent key</param>
<param name="updateValueFactory">The function used to generate a new value for an existing key based on the key's existing value</param>
<summary>Adds a key/value pair to the <see cref="T:System.Collections.Concurrent.ConcurrentDictionary`2" /> if the key does not already exist, or updates a key/value pair in the <see cref="T:System.Collections.Concurrent.ConcurrentDictionary`2" /> by using the specified function if the key already exists.</summary>
<returns>The new value for the key. This will be either be addValue (if the key was absent) or the result of updateValueFactory (if the key was present).</returns>
<returns>The new value for the key. This will be either be <c>addValue</c> (if the key was absent) or the result of <c>updateValueFactory</c> (if the key was present).</returns>
<remarks>
<format type="text/markdown"><![CDATA[

Expand Down