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

◆ Pattern

string System.Text.RegularExpressions.RegexCompilationInfo.Pattern
getset

Definition at line 66 of file RegexCompilationInfo.cs.

67 {
68 get
69 {
70 return _pattern;
71 }
72 [MemberNotNull("_pattern")]
73 set
74 {
75 _pattern = value ?? throw new ArgumentNullException("Pattern");
76 }
77 }

Referenced by System.Text.RegularExpressions.RegexCompilationInfo.RegexCompilationInfo().