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

◆ Synchronized()

static Stream System.IO.Stream.Synchronized ( Stream stream)
inlinestaticinherited

Definition at line 1025 of file Stream.cs.

1026 {
1027 if (stream != null)
1028 {
1029 if (!(stream is SyncStream))
1030 {
1031 return new SyncStream(stream);
1032 }
1033 return stream;
1034 }
1035 throw new ArgumentNullException("stream");
1036 }

References System.stream.