Пример #1
0
 public MethodOptions(Boolean multilineInput, Model.RegexMethod regexMethod)
 {
     this.MultilineInput = multilineInput;
     this.RegexMethod    = regexMethod;
 }
Пример #2
0
        internal CodeTemplateBase(ViewModel.IOptions snapshot, Model.RegexMethod regexMethod)
#if (DEBUG)
            : this(snapshot.PatternText, snapshot.Options, snapshot.ReplacementText, snapshot.InputText, null, null)
#else
            : this(snapshot.PatternText, snapshot.Options, snapshot.ReplacementText, snapshot.InputText, snapshot.MultilineInput, regexMethod)
Пример #3
0
 internal VbCodeTemplate(ViewModel.IOptions snapshot, Model.RegexMethod regexMethod) : base(snapshot, regexMethod)
 {
 }