本文整理汇总了C#中System.Reflection.MethodBase.GetValue方法的典型用法代码示例。如果您正苦于以下问题:C# MethodBase.GetValue方法的具体用法?C# MethodBase.GetValue怎么用?C# MethodBase.GetValue使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Reflection.MethodBase
的用法示例。
在下文中一共展示了MethodBase.GetValue方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: GetMethodAddress
/// <summary>获取方法在JIT编译后的地址(JIT Stubs)</summary>
/// <remarks>
/// MethodBase.DeclaringType.TypeHandle.Value: 指向该类型方法表(编译后)在 JIT Stubs 的起始位置。
/// Method.MethodHandle.Value: 表示该方法的索引序号。
/// CLR 2.0 SP2 (2.0.50727.3053) 及其后续版本中,该地址的内存布局发生了变化。直接用 "Method.MethodHandle.Value + 2" 即可得到编译后的地址。
/// </remarks>
/// <param name="method"></param>
/// <returns></returns>
unsafe public static IntPtr GetMethodAddress(MethodBase method)
{
// 处理动态方法
if (method is DynamicMethod)
{
var ptr = (byte*)((RuntimeMethodHandle)method.GetValue("m_method")).Value.ToPointer();
// 确保方法已经被编译
RuntimeHelpers.PrepareMethod(method.MethodHandle);
if (IntPtr.Size == 8)
return new IntPtr((ulong*)*(ptr + 5) + 12);
else
return new IntPtr((uint*)*(ptr + 5) + 12);
}
ShowMethod(new IntPtr((int*)method.MethodHandle.Value.ToPointer() + 2));
// 确保方法已经被编译
RuntimeHelpers.PrepareMethod(method.MethodHandle);
ShowMethod(new IntPtr((int*)method.MethodHandle.Value.ToPointer() + 2));
return new IntPtr((int*)method.MethodHandle.Value.ToPointer() + 2);
}