public RegexLogStep(string input, RegexStep step, string output) { _input = input; _step = step; _output = output; }
public void Add(RegexStep step, string comment) { _step.Add(new RegexStep(step.Pattern, step.Replace, step.Options)); _comment.Add(comment); }
// ---------------------------------------------------------------------------------------- // Constructors // ---------------------------------------------------------------------------------------- public RegexLogStep(string input, string from, string to, string output) { _input = input; _step = new RegexStep(from, to); _output = output; }