System.Data.ProviderBase.SimpleMatch.SimpleMatch C# (CSharp) Méthode

SimpleMatch() public méthode

public SimpleMatch ( SimpleRegex regex, int total, bool success, int index, int length, int skip, string input ) : System.Data
regex SimpleRegex
total int
success bool
index int
length int
skip int
input string
Résultat System.Data
		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;
		}

Same methods

SimpleMatch::SimpleMatch ( SimpleRegex regex, int total, bool success, int index, int length, string input ) : System.Data