示例#1
0
 public MatchContext <T> WithGroupId(int id, MatchReference matchReference) => new MatchContext <T>(this, id, matchReference);
示例#2
0
 MatchContext(MatchContext <T> context, int id, MatchReference matchReference)
 {
     InputSequence   = context.InputSequence;
     Index           = context.Index;
     MatchReferences = context.MatchReferences.Add(id, matchReference);
 }