Mono.Cecil.Cil.InstructionCollection.OnSet C# (CSharp) Method

OnSet() protected method

protected OnSet ( item, int index ) : void
index int
return void
		protected override void OnSet (Instruction item, int index)
		{
			var current = items [index];

			item.previous = current.previous;
			item.next = current.next;

			current.previous = null;
			current.next = null;
		}