Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
MatchSparse.cs
Go to the documentation of this file.
1
using
System.Collections
;
2
3
namespace
System.Text.RegularExpressions
;
4
5
internal
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
}
System.Collections.Hashtable
Definition
Hashtable.cs:13
System.Text.RegularExpressions.GroupCollection
Definition
GroupCollection.cs:11
System.Text.RegularExpressions.MatchSparse.MatchSparse
MatchSparse(Regex regex, Hashtable caps, int capcount, string text, int begpos, int len, int startpos)
Definition
MatchSparse.cs:11
System.Text.RegularExpressions.MatchSparse.Groups
override GroupCollection Groups
Definition
MatchSparse.cs:9
System.Text.RegularExpressions.MatchSparse._caps
new readonly Hashtable _caps
Definition
MatchSparse.cs:7
System.Text.RegularExpressions.MatchSparse
Definition
MatchSparse.cs:6
System.Text.RegularExpressions.Match._groupcoll
GroupCollection _groupcoll
Definition
Match.cs:5
System.Text.RegularExpressions.Match
Definition
Match.cs:4
System.Text.RegularExpressions.Regex
Definition
Regex.cs:14
System.Collections
Definition
BlockingCollection.cs:8
System.Text.RegularExpressions
Definition
Capture.cs:1
System.ExceptionArgument.text
@ text
System.ExceptionArgument.len
@ len
source
System.Text.RegularExpressions
System.Text.RegularExpressions
MatchSparse.cs
Generated by
1.10.0