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

◆ String

string System.Globalization.StringInfo.String
getset

Definition at line 25 of file StringInfo.cs.

26 {
27 get
28 {
29 return _str;
30 }
31 [MemberNotNull("_str")]
32 set
33 {
34 _str = value ?? throw new ArgumentNullException("value");
35 _indexes = null;
36 }
37 }