Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
LocalDataStoreSlot.cs
Go to the documentation of this file.
2
3namespace System;
4
5public sealed class LocalDataStoreSlot
6{
7 internal ThreadLocal<object?> Data { get; private set; }
8
10 {
11 Data = data;
12 GC.SuppressFinalize(this);
13 }
14
18}
static void SuppressFinalize(object obj)
Definition GC.cs:202
Definition GC.cs:8
LocalDataStoreSlot(ThreadLocal< object > data)