3 writes to _handle
System.Private.CoreLib (3)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\InteropServices\GCHandle.T.cs (3)
35_handle = GCHandle.InternalAlloc(target, GCHandleType.Normal); 38private GCHandle(IntPtr handle) => _handle = handle; 96_handle = IntPtr.Zero;
8 references to _handle
System.Private.CoreLib (8)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\InteropServices\GCHandle.T.cs (8)
41public readonly bool IsAllocated => _handle != IntPtr.Zero; 49IntPtr handle = _handle; 56IntPtr handle = _handle; 85public static IntPtr ToIntPtr(GCHandle<T> value) => value._handle; 93IntPtr handle = _handle; 105public readonly bool Equals(GCHandle<T> other) => _handle == other._handle; 111public override readonly int GetHashCode() => _handle.GetHashCode();