2 references to GCHandle
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\Runtime\InteropServices\GCHandle.cs (2)
65
public static GCHandle Alloc(object? value) => new
GCHandle
(value, GCHandleType.Normal);
72
public static GCHandle Alloc(object? value, GCHandleType type) => new
GCHandle
(value, type);