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

◆ Name

string System.Text.RegularExpressions.RegexCompilationInfo.Name
getset

Definition at line 30 of file RegexCompilationInfo.cs.

31 {
32 get
33 {
34 return _name;
35 }
36 [MemberNotNull("_name")]
37 set
38 {
39 if (value == null)
40 {
41 throw new ArgumentNullException("Name");
42 }
43 if (value.Length == 0)
44 {
46 }
47 _name = value;
48 }
49 }
static string Format(string resourceFormat, object p1)
Definition SR.cs:118
static string InvalidEmptyArgument
Definition SR.cs:46
Definition SR.cs:7

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