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

◆ Value

object? IStrongBox. System.Runtime.CompilerServices.StrongBox< T >.Value
getsetprivate

Implements System.Runtime.CompilerServices.IStrongBox.

Definition at line 10 of file StrongBox.cs.

11 {
12 get
13 {
14 return Value;
15 }
16 set
17 {
18 Value = (T)value;
19 }
20 }