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

◆ SyncRoot

object System.Reflection.RuntimeAssembly.SyncRoot
getpackageinherited

Definition at line 33 of file RuntimeAssembly.cs.

34 {
35 get
36 {
37 if (m_syncRoot == null)
38 {
39 Interlocked.CompareExchange<object>(ref m_syncRoot, new object(), (object)null);
40 }
41 return m_syncRoot;
42 }
43 }
static int CompareExchange(ref int location1, int value, int comparand)