Пример #1
0
 public void MarkLabel(Label loc)
 {
     _innerILGenerator.MarkLabel(loc);
 }
Пример #2
0
 public virtual void Mark(Label label)
 {
     gen.MarkLabel(label);
 }
        private void MarkLabel(Instruction instruction)
        {
            Label label = GetOrCreateLabel(instruction);

            _generator.MarkLabel(label);
        }