Inazuma.Mono.Cecil.Cil.Instruction.AppendLabel C# (CSharp) Method

AppendLabel() static private method

static private AppendLabel ( StringBuilder builder, Instruction instruction ) : void
builder StringBuilder
instruction Instruction
return void
		static void AppendLabel (StringBuilder builder, Instruction instruction)
		{
			builder.Append ("IL_");
			builder.Append (instruction.offset.ToString ("x4"));
		}