1 write to m_type
System.Private.CoreLib (1)
src\System\RuntimeHandles.cs (1)
108m_type = type;
13 references to m_type
System.Private.CoreLib (13)
src\System\RuntimeHandles.cs (12)
26m_type ?? throw new ArgumentNullException(null, SR.Arg_InvalidHandle); 96=> m_type?.GetHashCode() ?? 0; 99=> (obj is RuntimeTypeHandle handle) && ReferenceEquals(handle.m_type, m_type); 102=> ReferenceEquals(handle.m_type, m_type); 104public IntPtr Value => m_type?.m_handle ?? 0; 113return m_type == null; 390return m_type!; 433if (m_type is null) 438return new ModuleHandle(GetModule(m_type)); 849GC.KeepAlive(m_type);
src\System\Type.CoreCLR.cs (1)
83=> handle.m_type;