예제 #1
0
 public FinallyBlock(ExceptionStructure owner, Instruction start)
     : base(owner, start)
 {
 }
예제 #2
0
 protected Block(ExceptionStructure owner, Instruction start)
 {
     Owner = owner;
     Start = start;
 }
예제 #3
0
 public CatchBlock(ExceptionStructure owner, Instruction start, Type exceptionType)
     : base(owner, start)
 {
     ExceptionType = exceptionType;
 }
예제 #4
0
 void ICilWriter.BeginTry()
 {
     _exceptionStructureStack.Push(ExceptionStructure.BeginTry(this));
 }