| 1234567891011121314151617181920212223242526 | using System;using System.Collections.Generic;using System.Linq;using System.Text;using ILRuntime.CLR.TypeSystem;namespace ILRuntime.CLR.Method{    enum ExceptionHandlerType    {        Catch,        Finally,        Fault,    }    class ExceptionHandler    {        public ExceptionHandlerType HandlerType { get; set; }        public int TryStart { get; set; }        public int TryEnd { get; set; }        public int HandlerStart { get; set; }        public int HandlerEnd { get; set; }        public IType CatchType { get; set; }    }}
 |