Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
ByReference.cs
Go to the documentation of this file.
3
4namespace System;
5
6[NonVersionable]
7internal readonly ref struct ByReference<T>
8{
9 private readonly IntPtr _value;
10
11 public ref T Value
12 {
13 [Intrinsic]
14 get
15 {
17 }
18 }
19
20 [Intrinsic]
21 public ByReference(ref T value)
22 {
24 }
25}
ByReference(ref T value)
readonly IntPtr _value
Definition ByReference.cs:9