System.Data.ProviderBase.SimpleRegex.Match C# (CSharp) Метод

Match() защищенный Метод

protected Match ( string input ) : SimpleMatch
input string
Результат SimpleMatch
		protected internal SimpleMatch Match(string input) {
			return Match(input, 0, input.Length);
		}

Same methods

SimpleRegex::Match ( string input, int beginning, int length ) : SimpleMatch

Usage Example

Пример #1
0
 protected internal SimpleMatch NextMatch()
 {
     return(_regex.Match(Input, Index + Length + _skip, _total));
 }