7 references to Box
System.Private.CoreLib (6)
Internal\Runtime\Augments\RuntimeAugments.cs (3)
247return ReflectionPointer.Box(*(void**)address, Type.GetTypeFromHandle(fieldType)); 269return ReflectionPointer.Box((void*)Unsafe.As<byte, IntPtr>(ref address), Type.GetTypeFromHandle(fieldType)); 336return ReflectionPointer.Box((void*)ptrValue, Type.GetTypeFromHandle(fieldTypeHandle));
System\Reflection\DynamicInvokeInfo.cs (3)
792obj = Pointer.Box((void*)Unsafe.As<byte, IntPtr>(ref obj.GetRawData()), type); 826obj = Pointer.Box((void*)Unsafe.As<byte, IntPtr>(ref obj.GetRawData()), type); 857obj = Pointer.Box((void*)Unsafe.As<byte, IntPtr>(ref byref), type);
System.Runtime.InteropServices.JavaScript (1)
System\Runtime\InteropServices\JavaScript\JSHostImplementation.CoreCLR.cs (1)
64object boxedLegacyArgs = Pointer.Box((void*)args, typeof(JSMarshalerArgument*));