RegExpose.RegexEngine.GetMatches C# (CSharp) Méthode

GetMatches() public méthode

public GetMatches ( ) : IEnumerable
Résultat IEnumerable
        public IEnumerable<Match> GetMatches()
        {
            var match = GetMatch();

            while (match != null)
            {
                yield return match;
                match = match.NextMatch();
            }
        }