System.Text.RegularExpressions.Match.IsMatched C# (CSharp) Method

IsMatched() private method

private IsMatched ( int cap ) : bool
cap int
return bool
        internal virtual bool IsMatched(int cap)
        {
            return cap < _matchcount.Length && _matchcount[cap] > 0 && _matches[cap][_matchcount[cap] * 2 - 1] != (-3 + 1);
        }

Usage Example

Example #1
0
 /*
  * Call out to runmatch to get around visibility issues
  */
 protected bool IsMatched(int cap)
 {
     return(_runmatch.IsMatched(cap));
 }
All Usage Examples Of System.Text.RegularExpressions.Match::IsMatched