MoreInternals.Model.MultiSelector.MultiSelector C# (CSharp) Method

MultiSelector() public method

public MultiSelector ( IEnumerable selectors, int start, int stop, string filePath ) : System
selectors IEnumerable
start int
stop int
filePath string
return System
        public MultiSelector(IEnumerable<Selector> selectors, int start, int stop, string filePath)
        {
            Selectors = selectors.ToList().AsReadOnly();

            Start = start;
            Stop = stop;
            FilePath = filePath;
        }