internal void TriggerMatch() { if (matches != null) { matches.ForEach(r => r.TriggerMatch()); } Parser.TriggerMatch(this); }
internal void TriggerMatch() { if (matches != null) { foreach (var match in matches) { match.TriggerMatch(); } } Parser.TriggerMatch(this); }
internal void TriggerMatch() { if (matches != null) { for (int i = 0; i < matches.Count; i++) { Match match = matches[i]; match.TriggerMatch(); } } Parser.TriggerMatch(this); }