Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
MatchSparse.cs
Go to the documentation of this file.
2
4
5internal sealed class MatchSparse : Match
6{
7 internal new readonly Hashtable _caps;
8
9 public override GroupCollection Groups => _groupcoll ?? (_groupcoll = new GroupCollection(this, _caps));
10
11 internal MatchSparse(Regex regex, Hashtable caps, int capcount, string text, int begpos, int len, int startpos)
12 : base(regex, capcount, text, begpos, len, startpos)
13 {
14 _caps = caps;
15 }
16}
MatchSparse(Regex regex, Hashtable caps, int capcount, string text, int begpos, int len, int startpos)