Exemplo n.º 1
0
 public SimpleMatch(SimpleRegex regex, int total, bool success, int index, int length, int skip, string input)
     : base(index, length, input)
 {
     _success = success;
     _regex   = regex;
     _total   = total;
     _skip    = skip;
 }
Exemplo n.º 2
0
		public SimpleMatch(SimpleRegex regex, int total, bool success, int index, int length, int skip, string input)
			: base(index, length, input) {
			_success = success;
			_regex = regex;
			_total = total;
			_skip = skip;
		}
Exemplo n.º 3
0
		public SimpleMatch(SimpleRegex regex, int total, bool success, int index, int length, string input)
			: this(regex, total, success, index, length, 0, input) {}
Exemplo n.º 4
0
 public SimpleMatch(SimpleRegex regex, int total, bool success, int index, int length, string input)
     : this(regex, total, success, index, length, 0, input)
 {
 }