public ILInstruction( int offset, ILInstructionType type, ILInstructionFlagsContext flagsContext, ushort popCount, ushort pushCount, object argument) : this(offset, type, flagsContext, popCount, pushCount, argument, null) { }
public ILInstruction( int offset, ILInstructionType type, ILInstructionFlagsContext flagsContext, ushort popCount, ushort pushCount, object argument, SequencePoint?sequencePoint) { Offset = offset; InstructionType = type; FlagsContext = flagsContext; PopCount = popCount; PushCount = pushCount; Argument = argument; SequencePoint = sequencePoint; }