Пример #1
0
 private static MatchState CreateIntermediate(NextStateMatcher nextMatcher) => new MatchState(null, null, nextMatcher);
Пример #2
0
 private MatchState(string utf16Range, string utf16Range2, NextStateMatcher next)
 {
     this.Utf16Range  = utf16Range;
     this.Utf16Range2 = utf16Range2;
     this.NextMatcher = next;
 }