Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ SyncRoot

object ICollection. System.Collections.Immutable.ImmutableDictionary< TKey, TValue >.Builder.SyncRoot
getprivate

Implements System.Collections.ICollection.

Definition at line 235 of file ImmutableDictionary.cs.

236 {
237 get
238 {
239 if (_syncRoot == null)
240 {
241 Interlocked.CompareExchange<object>(ref _syncRoot, new object(), (object)null);
242 }
243 return _syncRoot;
244 }
245 }
static int CompareExchange(ref int location1, int value, int comparand)