Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ CacheSize

int System.Text.RegularExpressions.Regex.CacheSize
staticgetset

Definition at line 83 of file Regex.cs.

84 {
85 get
86 {
87 return RegexCache.MaxCacheSize;
88 }
89 set
90 {
91 if (value < 0)
92 {
93 ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument.value);
94 }
96 }
97 }