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

◆ Synchronized()

static TextReader System.IO.TextReader.Synchronized ( TextReader reader)
inlinestaticinherited

Definition at line 381 of file TextReader.cs.

382 {
383 if (reader == null)
384 {
385 throw new ArgumentNullException("reader");
386 }
387 if (!(reader is SyncTextReader))
388 {
389 return new SyncTextReader(reader);
390 }
391 return reader;
392 }