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

◆ GetThreadLocal()

static ThreadLocal< object > System.Threading.Thread.LocalDataStore.GetThreadLocal ( LocalDataStoreSlot slot)
inlinestaticprivate

Definition at line 138 of file Thread.cs.

139 {
140 if (slot == null)
141 {
142 throw new ArgumentNullException("slot");
143 }
144 return slot.Data;
145 }

Referenced by System.Threading.Thread.LocalDataStore.GetData(), and System.Threading.Thread.LocalDataStore.SetData().