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

◆ Unbox()

static unsafe void * System.Reflection.Pointer.Unbox ( object ptr)
inlinestatic

Definition at line 36 of file Pointer.cs.

37 {
38 if (!(ptr is Pointer))
39 {
40 throw new ArgumentException(SR.Arg_MustBePointer, "ptr");
41 }
42 return ((Pointer)ptr)._ptr;
43 }
unsafe Pointer(void *ptr, Type ptrType)
Definition Pointer.cs:13

References System.SR.Arg_MustBePointer, and System.Runtime.Serialization.Dictionary.