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

◆ Write() [3/21]

virtual void System.IO.BinaryWriter.Write ( byte[] buffer)
inlinevirtualinherited

Definition at line 142 of file BinaryWriter.cs.

143 {
144 if (buffer == null)
145 {
146 throw new ArgumentNullException("buffer");
147 }
148 OutStream.Write(buffer, 0, buffer.Length);
149 }
void Write(byte[] buffer, int offset, int count)

References System.buffer, System.IO.BinaryWriter.OutStream, and System.IO.Stream.Write().