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

◆ Equals()

override bool System.Runtime.InteropServices.GCHandle.Equals ( [NotNullWhen(true)] object? o)
inline

Definition at line 148 of file GCHandle.cs.

149 {
150 if (o is GCHandle)
151 {
152 return _handle == ((GCHandle)o)._handle;
153 }
154 return false;
155 }
GCHandle(object value, GCHandleType type)
Definition GCHandle.cs:51

References System.Runtime.InteropServices.GCHandle.GCHandle(), and System.Runtime.InteropServices.GCHandle._handle.