Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
CapNames
IDictionary
? System.Text.RegularExpressions.Regex.CapNames
get
set
protected
Definition at line
62
of file
Regex.cs
.
63
{
64
get
65
{
66
return
capnames
;
67
}
68
[
param
:
DisallowNull
]
69
set
70
{
71
if
(
value
==
null
)
72
{
73
ThrowHelper.ThrowArgumentNullException(
ExceptionArgument
.value);
74
}
75
capnames
= (
value
as
Hashtable
) ??
new
Hashtable
(
value
);
76
}
77
}
System.Collections.Generic.Dictionary
Definition
Dictionary.cs:14
System.Collections.Hashtable
Definition
Hashtable.cs:13
System.Text.RegularExpressions.Regex.capnames
Hashtable? capnames
Definition
Regex.cs:23
System.Runtime.Serialization.CollectionKind.Dictionary
@ Dictionary
System.Text.RegularExpressions.ExceptionArgument
ExceptionArgument
Definition
ExceptionArgument.cs:4
System.Text.RegularExpressions.ExceptionArgument.value
@ value
System
Text
RegularExpressions
Regex
Generated by
1.10.0