FastColoredTextBoxNS.RemoveLinesCommand.RemoveLinesCommand C# (CSharp) Method

RemoveLinesCommand() public method

Constructor
public RemoveLinesCommand ( TextSource ts, List iLines ) : System
ts TextSource
iLines List
return System
        public RemoveLinesCommand(TextSource ts, List<int> iLines)
            : base(ts)
        {
            //sort iLines
            iLines.Sort();
            //
            this.iLines = iLines;
            lastSel = sel = new RangeInfo(ts.CurrentTB.Selection);
        }