/// <summary> /// Visits the inline type instruction. /// </summary> /// <param name="inlineTypeInstruction">The inline type instruction.</param> public override void VisitInlineTypeInstruction(InlineTypeInstruction inlineTypeInstruction) { string name; try { name = inlineTypeInstruction.Type.FullName; } catch (Exception exception) { name = "!" + exception.Message + "!"; } this.collector.Process(inlineTypeInstruction, name); }
/// <summary> /// Visits the inline type instruction. /// </summary> /// <param name="inline">The inline type instruction.</param> public virtual void VisitInlineTypeInstruction(InlineTypeInstruction inline) { }
/// <summary> /// Visits the inline type instruction. /// </summary> /// <param name="inlineTypeInstruction">The inline type instruction.</param> public override void VisitInlineTypeInstruction(InlineTypeInstruction inlineTypeInstruction) { base.collector.Process(inlineTypeInstruction, base.formatProvider.Int32ToHex(inlineTypeInstruction.Token)); }