System.Reflection.MethodBody
namespace System.Reflection
{
public class MethodBody
{
public virtual IList<ExceptionHandlingClause> ExceptionHandlingClauses { get; }
public virtual bool InitLocals { get; }
public virtual int LocalSignatureMetadataToken { get; }
public virtual IList<LocalVariableInfo> LocalVariables { get; }
public virtual int MaxStackSize { get; }
protected MethodBody();
public virtual byte[] GetILAsByteArray();
}
}