Regex source generator should include capture group name in comment #62715
Labels
area-System.Text.RegularExpressions
good first issue
Issue should be easy to implement, good for first-time contributors
help wanted
[up-for-grabs] Good issue for external contributors
Milestone
Given an expression like:
"^(?<LINE>[0-9]*)-(?<ENDLINE>[0-9]*)$"
the regex source generator will output comments for the groups like:
// 1st capturing group
We should include the name if one exists, e.g.
// 1st capturing group ("LINE")
The text was updated successfully, but these errors were encountered: