public MethodDescChunk GetMethodDescChunk() { int offset = (int)MethodDescChunk.SizeOf + (GetMethodDescIndex() * ALIGNMENT); IntPtr chunkPtr = _address - offset; return(MethodDescChunk.ReadFromAddress(chunkPtr)); }
public MethodTable GetMethodTable() { MethodDescChunk chunk = GetMethodDescChunk(); return(MethodTable.ReadFromAddress(chunk.GetMethodTablePtr())); }