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

◆ Read() [1/2]

override int System.IO.Stream.SyncStream.Read ( byte[] bytes,
int offset,
int count )
inline

Definition at line 361 of file Stream.cs.

362 {
363 lock (_stream)
364 {
365 return _stream.Read(bytes, offset, count);
366 }
367 }
readonly Stream _stream
Definition Stream.cs:244
int Read(byte[] buffer, int offset, int count)

References System.IO.Stream.SyncStream._stream, System.bytes, System.count, System.offset, and System.IO.Stream.Read().