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

◆ StringReader()

System.IO.StringReader.StringReader ( string s)
inline

Definition at line 14 of file StringReader.cs.

15 {
16 if (s == null)
17 {
18 ThrowHelper.ThrowArgumentNullException(ExceptionArgument.s);
19 }
20 _s = s;
21 _length = s.Length;
22 }

References System.IO.StringReader._length, System.IO.StringReader._s, System.s, and System.ThrowHelper.ThrowArgumentNullException().