14 references to Value
System.Private.CoreLib (14)
src\System\Reflection\Emit\DynamicILGenerator.cs (5)
787methodHandle = ((RuntimeMethodHandle)handle).Value; 800methodHandle = dm.GetMethodDescriptor().Value; 806methodHandle = gmi.m_methodHandle.Value; 822methodHandle = vaMeth.m_method!.MethodHandle.Value; 827methodHandle = vaMeth.m_dynamicMethod.GetMethodDescriptor().Value;
src\System\Reflection\MethodBase.CoreCLR.cs (1)
54private IntPtr GetMethodDesc() { return MethodHandle.Value; }
src\System\RuntimeHandles.cs (6)
1000return HashCode.Combine(Value); 1010return handle.Value == Value; 1030public static IntPtr ToIntPtr(RuntimeMethodHandle value) => value.Value; 1038return handle.Value == Value;
src\System\RuntimeType.CoreCLR.cs (2)
235if (candidate is RuntimeMethodInfo candidateRMI && candidateRMI.MethodHandle.Value == method.Value) 250if (candidate is RuntimeConstructorInfo candidateRCI && candidateRCI.MethodHandle.Value == method.Value)