System.Reflection.Metadata.MethodBodyBlock
namespace System.Reflection.Metadata
{
public sealed class MethodBodyBlock
{
public int Size { get; }
public int MaxStack { get; }
public bool LocalVariablesInitialized { get; }
public StandaloneSignatureHandle LocalSignature { get; }
public ImmutableArray<ExceptionRegion> ExceptionRegions { get; }
public byte[] GetILBytes();
public ImmutableArray<byte> GetILContent();
public BlobReader GetILReader();
public static MethodBodyBlock Create(BlobReader reader);
}
}